diff --git a/cda-etl/README.md b/cda-etl/README.md
index c9b732a30..5898fdb19 100644
--- a/cda-etl/README.md
+++ b/cda-etl/README.md
@@ -13,11 +13,22 @@ If `SOURCE_CDA_URL` is not configured, the pipeline skips the download phase and
## What It Does
-The ETL process currently handles three CWMS resource types:
+The ETL process handles these CWMS resource types:
- Locations
- Projects
- Timeseries data
+- Clobs
+- Location levels
+- Ratings
+- Properties (office- and project-level)
+- Outlets
+- Turbines, and turbine changes
+- Locks (physical lock structures)
+- Gate changes
+- Water users, water contracts (including pump associations and water supply accounting)
+- Location groups (with assigned locations), office-level
+- Timeseries groups (with assigned timeseries), office-level
The data is organized by office, project, and resource type, then written to a filesystem staging area before being posted to the destination CDA API.
@@ -54,15 +65,21 @@ offices:
### YAML Fields
- `version`: Config version. Must be `1`.
-- `settings.startTime`: Default start time used for timeseries downloads when a timeseries does not define its own download window.
-- `settings.endTime`: Default end time used for timeseries downloads when a timeseries does not define its own download window.
+- `settings.startTime`: Default start time used for timeseries/window-based downloads when an item does not define its own download window.
+- `settings.endTime`: Default end time used for timeseries/window-based downloads when an item does not define its own download window.
- `settings.maxThreads`: Maximum number of worker threads used for staging and publishing.
- `settings.logLevel`: Logging level for the application.
- `settings.path`: Filesystem root used for staged JSON files.
-- `offices`: List of office definitions.
+- `offices`: List of office definitions. Each office may also declare `properties`, `locationGroups`, and `timeseriesGroups` (office-wide, not tied to one project).
- `projects`: Projects under each office.
- `locations`: Locations under each project.
- `timeseries`: Timeseries under each project.
+- `clobs`, `locationLevels`, `ratings`, `properties`: Under each project, same shape as the office-level `properties`.
+- `outlets`, `turbines`, `locks`: Flat lists of `{id, enabled}` under each project - literal ids, no time window.
+- `gateChanges`, `turbineChanges`: A single `{enabled, download: {startTime, endTime}}` mapping per project (not a list) - one time-windowed feed for the whole project.
+- An outlet's effective rating spec is not stored on the outlet itself - CDA derives it from a `Rating`-category location group: the outlet carries a `rating-group-id`, and that group's `shared-loc-alias-id` is the rating spec id. Storing gate changes requires both to already exist on the destination, so neither needs to be hand-listed in `outlets`/`locationGroups`/`ratings` - staging/publishing outlets automatically discovers and stages/publishes the associated `Rating` location group and rating alongside them.
+- `waterUsers`: Under each project - a list of `{id, enabled, contracts: [...]}`. Each contract is `{id, enabled, pumps: [...], accounting: {enabled, startTime, endTime}}`. A pump is `{id, type, enabled}` (`type` is `IN`, `OUT`, or `OUT BELOW`); a pump with `enabled: false` is disassociated from the destination contract during publish rather than skipped. `accounting.enabled` defaults to `false` when the `accounting` block is omitted entirely.
+- `locationGroups`, `timeseriesGroups`: Under each office - `{categoryId, id, enabled}` entries, or `{categoryId, all: true}` for every group in a category, mirroring how `properties` categories work.
### Enabled Flags
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.CONTROLLED.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.CONTROLLED.json
new file mode 100644
index 000000000..cc6091a7e
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.CONTROLLED.json
@@ -0,0 +1,6 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.CONTROLLED",
+ "description": "all controlled discharges (gates and turbines)",
+ "value": "all controlled discharges (gates and turbines)Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.EUFA TURBINE_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.EUFA TURBINE_TOTAL.json
new file mode 100644
index 000000000..12db98058
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.EUFA TURBINE_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.EUFA TURBINE_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.GATED_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.GATED_TOTAL.json
new file mode 100644
index 000000000..c03cd9ed7
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.GATED_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.GATED_TOTAL",
+ "value": "FlowFlow-ControlledAve1Hour1HourRev-Regi-Flowgroup0sFlow-ControlledInst1Hour0Rev-Regi-Flowgroup0s"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.LOCK_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.LOCK_TOTAL.json
new file mode 100644
index 000000000..a81fa8858
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.LOCK_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.LOCK_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PROJECT_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PROJECT_TOTAL.json
index 128d15ebb..8826abfe5 100644
--- a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PROJECT_TOTAL.json
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PROJECT_TOTAL.json
@@ -1,4 +1,5 @@
{
"office-id": "SWT",
- "id": "FLOW.EUFA.PROJECT_TOTAL"
+ "id": "FLOW.EUFA.PROJECT_TOTAL",
+ "value": "FlowFlow-Res OutAve~1Day1DayRev-Regi-Flowgroup6h0mFlow-Res OutAve1Hour1HourRev-Regi-Flowgroup0sFlow-Res OutInst1Hour0Rev-Regi-Flowgroup0s"
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PUMP_IN_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PUMP_IN_TOTAL.json
new file mode 100644
index 000000000..14402082a
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PUMP_IN_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.PUMP_IN_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PUMP_OUT_BELOW_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PUMP_OUT_BELOW_TOTAL.json
new file mode 100644
index 000000000..22c6dfd07
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PUMP_OUT_BELOW_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.PUMP_OUT_BELOW_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PUMP_OUT_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PUMP_OUT_TOTAL.json
new file mode 100644
index 000000000..eca77bdd5
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.PUMP_OUT_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.PUMP_OUT_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.SLUICEGATE_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.SLUICEGATE_TOTAL.json
new file mode 100644
index 000000000..0dc94a4db
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.SLUICEGATE_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.SLUICEGATE_TOTAL",
+ "value": "FlowFlow-SluiceGatesInst1Hour0Rev-Regi-Flowgroup0s"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.TAINTERGATE_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.TAINTERGATE_TOTAL.json
new file mode 100644
index 000000000..c2aff8624
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.TAINTERGATE_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.TAINTERGATE_TOTAL",
+ "value": "FlowFlow-TainterGatesInst1Hour0Rev-Regi-Flowgroup0s"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.TURBINE_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.TURBINE_TOTAL.json
new file mode 100644
index 000000000..df37252bc
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.TURBINE_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.TURBINE_TOTAL",
+ "value": "FlowFlow-PowerAve~1Day1DayRev-Regi-Flowgroup6h0mFlow-PowerAve1Hour1HourRev-Regi-Flowgroup0sFlow-PowerInst1Hour0Rev-Regi-Flowgroup0s"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.UNCONTROLLED_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.UNCONTROLLED_TOTAL.json
new file mode 100644
index 000000000..5c5f3e1a9
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.EUFA.UNCONTROLLED_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.EUFA.UNCONTROLLED_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.GATED_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.GATED_TOTAL.json
new file mode 100644
index 000000000..315dcfcf5
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.GATED_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.GATED_TOTAL",
+ "value": "FlowFlow-ControlledAve1Hour1HourRev-Regi-Flowgroup0mFlow-ControlledInst1Hour0Rev-Regi-Flowgroup0m"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.LOCK_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.LOCK_TOTAL.json
new file mode 100644
index 000000000..685cdff45
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.LOCK_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.LOCK_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.LOW FLOW_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.LOW FLOW_TOTAL.json
new file mode 100644
index 000000000..4b9373333
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.LOW FLOW_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.LOW FLOW_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PROJECT_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PROJECT_TOTAL.json
new file mode 100644
index 000000000..981b4430d
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PROJECT_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.PROJECT_TOTAL",
+ "value": "FlowFlow-Res OutAve~1Day1DayRev-Regi-Flowgroup6h0mFlow-Res OutAve1Hour1HourRev-Regi-Flowgroup0sFlow-Res OutInst1Hour0Rev-Regi-Flowgroup0s"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PUMP_IN_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PUMP_IN_TOTAL.json
new file mode 100644
index 000000000..fe1bab1a0
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PUMP_IN_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.PUMP_IN_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PUMP_OUT_BELOW_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PUMP_OUT_BELOW_TOTAL.json
new file mode 100644
index 000000000..97d18c6b9
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PUMP_OUT_BELOW_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.PUMP_OUT_BELOW_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PUMP_OUT_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PUMP_OUT_TOTAL.json
new file mode 100644
index 000000000..2f7022aa1
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.PUMP_OUT_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.PUMP_OUT_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.SLUICEGATE_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.SLUICEGATE_TOTAL.json
new file mode 100644
index 000000000..0dd646bc9
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.SLUICEGATE_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.SLUICEGATE_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.TAINTERGATE_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.TAINTERGATE_TOTAL.json
new file mode 100644
index 000000000..2612b3808
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.TAINTERGATE_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.TAINTERGATE_TOTAL",
+ "value": "FlowFlow-RES-TGsAve1Hour1Hourregi0s"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.TURBINE_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.TURBINE_TOTAL.json
new file mode 100644
index 000000000..8a730e8e8
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.TURBINE_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.TURBINE_TOTAL",
+ "value": "FlowFlow-PowerAve1Hour1HourRev-Regi-Flowgroup0sFlow-PowerInst1Hour0Rev-Regi-Flowgroup0sFlow-PowerAve~1Day1DayRev-Regi-Flowgroup6h0m"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.UNCONTROLLED_TOTAL.json b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.UNCONTROLLED_TOTAL.json
new file mode 100644
index 000000000..a21f15857
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Clobs/FLOW.KEYS.UNCONTROLLED_TOTAL.json
@@ -0,0 +1,5 @@
+{
+ "office-id": "SWT",
+ "id": "FLOW.KEYS.UNCONTROLLED_TOTAL",
+ "value": "Flow"
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/GateChanges/EUFA.json b/cda-etl/data/sample-data/SWT/GateChanges/EUFA.json
new file mode 100644
index 000000000..fc7f38ab1
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/GateChanges/EUFA.json
@@ -0,0 +1,112 @@
+[
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1784207160000,
+ "pool-elevation": 586.481,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.5698333333333,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-SG1"
+ },
+ "opening": 0.1,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1784721600000,
+ "pool-elevation": 586.0899999999999,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "notes": "closed",
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.11999999999995,
+ "elevation-units": "ft",
+ "settings": []
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1784733420000,
+ "pool-elevation": 586.0899999999999,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "notes": "closed",
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.18,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-SG1"
+ },
+ "opening": 0.1,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/GateChanges/KEYS.json b/cda-etl/data/sample-data/SWT/GateChanges/KEYS.json
new file mode 100644
index 000000000..9f48b1729
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/GateChanges/KEYS.json
@@ -0,0 +1,3113 @@
+[
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782162000000,
+ "pool-elevation": 732.0099999999999,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.1926666666667,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782230400000,
+ "pool-elevation": 732.5099999999999,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 644.7699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782241200000,
+ "pool-elevation": 732.5399999999998,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 647.0699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 3.9999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 3.9999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782399600000,
+ "pool-elevation": 734.68,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 649.4799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782579600000,
+ "pool-elevation": 738.43,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 649.1899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782666000000,
+ "pool-elevation": 739.05,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 650.4899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 3.9999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 3.9999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782853200000,
+ "pool-elevation": 740.5999999999999,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 650.6099999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 3.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1783427400000,
+ "pool-elevation": 735.8999999999999,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 648.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 2.4999999999999996,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 3.0,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1783526400000,
+ "pool-elevation": 734.1999999999999,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 648.1399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 1.5,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 1.9999999999999998,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1783537200000,
+ "pool-elevation": 734.05,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 646.5,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1784145600000,
+ "pool-elevation": 731.0799999999999,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 643.8499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1784232000000,
+ "pool-elevation": 730.53,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "notes": "closed",
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 643.3999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1784579400000,
+ "pool-elevation": 729.015,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "notes": "closed",
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 642.2499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9"
+ },
+ "opening": 0.9999999999999999,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1784838600000,
+ "pool-elevation": 726.145,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "notes": "closed",
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 643.68,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ },
+ {
+ "type": "gate-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8"
+ },
+ "opening": 0.49999999999999994,
+ "opening-parameter": "Opening",
+ "opening-units": "ft",
+ "invert-elevation": 0.0
+ }
+ ]
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1785182400000,
+ "pool-elevation": 724.1399999999999,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "C",
+ "tooltip": "Calculated from gate opening-elev curves",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "F",
+ "tooltip": "Flood control release",
+ "active": true
+ },
+ "notes": "closed",
+ "type": "gate-change",
+ "new-total-discharge-override": "NaN",
+ "old-total-discharge-override": "NaN",
+ "discharge-units": "cfs",
+ "tailwater-elevation": 642.3599999999999,
+ "elevation-units": "ft",
+ "settings": []
+ }
+]
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/LocationGroups/Rating.json b/cda-etl/data/sample-data/SWT/LocationGroups/Rating.json
new file mode 100644
index 000000000..66de6e3fb
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/LocationGroups/Rating.json
@@ -0,0 +1,223 @@
+[
+ {
+ "office-id": "SWT",
+ "id": "EUFA-SluiceGate",
+ "location-category": {
+ "office-id": "SWT",
+ "id": "Rating"
+ },
+ "shared-loc-alias-id": "EUFA.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "shared-ref-location-id": "EUFA",
+ "assigned-locations": [
+ {
+ "location-id": "EUFA-SG1",
+ "office-id": "SWT"
+ }
+ ]
+ },
+ {
+ "office-id": "SWT",
+ "id": "EUFA-TainterGate",
+ "location-category": {
+ "office-id": "SWT",
+ "id": "Rating"
+ },
+ "shared-loc-alias-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "shared-ref-location-id": "EUFA",
+ "assigned-locations": [
+ {
+ "location-id": "EUFA-TG1",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "EUFA-TG11",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "EUFA-TG3",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "EUFA-TG5",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "EUFA-TG7",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "EUFA-TG9",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "EUFA-TG10",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "EUFA-TG2",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "EUFA-TG4",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "EUFA-TG6",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "EUFA-TG8",
+ "office-id": "SWT"
+ }
+ ]
+ },
+ {
+ "office-id": "SWT",
+ "id": "KEYS-LOW flow pipes",
+ "location-category": {
+ "office-id": "SWT",
+ "id": "Rating"
+ },
+ "shared-loc-alias-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "shared-ref-location-id": "KEYS",
+ "assigned-locations": [
+ {
+ "location-id": "KEYS-LF1",
+ "office-id": "SWT"
+ }
+ ]
+ },
+ {
+ "office-id": "SWT",
+ "id": "KEYS-Sluice Gates",
+ "location-category": {
+ "office-id": "SWT",
+ "id": "Rating"
+ },
+ "shared-loc-alias-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "shared-ref-location-id": "KEYS",
+ "assigned-locations": [
+ {
+ "location-id": "KEYS-SG1",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-SG3",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-SG5",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-SG7",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-SG9",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-SG2",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-SG4",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-SG6",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-SG8",
+ "office-id": "SWT"
+ }
+ ]
+ },
+ {
+ "office-id": "SWT",
+ "id": "KEYS-Tainter Gates",
+ "location-category": {
+ "office-id": "SWT",
+ "id": "Rating"
+ },
+ "shared-loc-alias-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "shared-ref-location-id": "KEYS",
+ "assigned-locations": [
+ {
+ "location-id": "KEYS-TG16",
+ "office-id": "SWT",
+ "alias-id": "KEYS-TG16"
+ },
+ {
+ "location-id": "KEYS-TG1",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG10",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG11",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG12",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG13",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG14",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG15",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG17",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG18",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG2",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG3",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG4",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG5",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG6",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG7",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG8",
+ "office-id": "SWT"
+ },
+ {
+ "location-id": "KEYS-TG9",
+ "office-id": "SWT"
+ }
+ ]
+ }
+]
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-SG1.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-SG1.json
new file mode 100644
index 000000000..ffa28b64a
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-SG1.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-SG1",
+ "latitude": 35.3070416666667,
+ "longitude": -95.36275,
+ "active": true,
+ "public-name": "SG1",
+ "long-name": "SG1",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 35.3069444444444,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-SluiceGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG1.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG1.json
new file mode 100644
index 000000000..d37ce84a2
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG1.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG1",
+ "latitude": 35.3070416666667,
+ "longitude": -95.36275,
+ "active": true,
+ "public-name": "TG1",
+ "long-name": "TG1",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 35.3069444444444,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG10.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG10.json
new file mode 100644
index 000000000..cd57d3a7a
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG10.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG10",
+ "latitude": 35.3070419,
+ "longitude": -95.3627509,
+ "active": true,
+ "public-name": "TG10",
+ "long-name": "TG10",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 35.3069444444444,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG11.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG11.json
new file mode 100644
index 000000000..bf15b8eab
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG11.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG11",
+ "latitude": 35.3070416666667,
+ "longitude": -95.36275,
+ "active": true,
+ "public-name": "TG11",
+ "long-name": "TG11",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 35.3069444444444,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG2.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG2.json
new file mode 100644
index 000000000..b9046f2e9
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG2.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG2",
+ "latitude": 35.3070416666667,
+ "longitude": -95.36275,
+ "active": true,
+ "public-name": "TG2",
+ "long-name": "TG2",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 35.3069444444444,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG3.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG3.json
new file mode 100644
index 000000000..f433e2c46
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG3.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG3",
+ "latitude": 35.3070416666667,
+ "longitude": -95.36275,
+ "active": true,
+ "public-name": "TG3",
+ "long-name": "TG3",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 35.3069444444444,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG4.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG4.json
new file mode 100644
index 000000000..41727286a
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG4.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG4",
+ "latitude": 35.3070416666667,
+ "longitude": -95.36275,
+ "active": true,
+ "public-name": "TG4",
+ "long-name": "TG4",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 35.3069444444444,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG5.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG5.json
new file mode 100644
index 000000000..6160fb6b3
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG5.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG5",
+ "latitude": 35.3070419,
+ "longitude": -95.3627509,
+ "active": true,
+ "public-name": "TG5",
+ "long-name": "TG5",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 35.3069444444444,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG6.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG6.json
new file mode 100644
index 000000000..9ea44c51f
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG6.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG6",
+ "latitude": 35.3070419,
+ "longitude": -95.3627509,
+ "active": true,
+ "public-name": "TG6",
+ "long-name": "TG6",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 35.3069444444444,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG7.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG7.json
new file mode 100644
index 000000000..4f0ad4d2a
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG7.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG7",
+ "latitude": 35.3070419,
+ "longitude": -95.3627509,
+ "active": true,
+ "public-name": "TG7",
+ "long-name": "TG7",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 35.3069444444444,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG8.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG8.json
new file mode 100644
index 000000000..70152db63
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG8.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG8",
+ "latitude": 35.3070419,
+ "longitude": -95.3627509,
+ "active": true,
+ "public-name": "TG8",
+ "long-name": "TG8",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG9.json b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG9.json
new file mode 100644
index 000000000..e5df81afe
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/EUFA-TG9.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-TG9",
+ "latitude": 35.3070419,
+ "longitude": -95.3627509,
+ "active": true,
+ "public-name": "TG9",
+ "long-name": "TG9",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "EUFA-TainterGate"
+ },
+ "rating-spec-id": "EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-LF1.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-LF1.json
new file mode 100644
index 000000000..aa24cb804
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-LF1.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-LF1",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "LF1",
+ "long-name": "LF1",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-LOW flow pipes"
+ },
+ "rating-spec-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG1.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG1.json
new file mode 100644
index 000000000..e436404c4
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG1.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-SG1",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "SG1",
+ "long-name": "SG1",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Sluice Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG2.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG2.json
new file mode 100644
index 000000000..84ca85ad2
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG2.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-SG2",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "SG2",
+ "long-name": "SG2",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Sluice Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG3.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG3.json
new file mode 100644
index 000000000..471625449
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG3.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-SG3",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "SG3",
+ "long-name": "SG3",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Sluice Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG4.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG4.json
new file mode 100644
index 000000000..93ab5e004
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG4.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-SG4",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "SG4",
+ "long-name": "SG4",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Sluice Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG5.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG5.json
new file mode 100644
index 000000000..7d66ed965
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG5.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-SG5",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "SG5",
+ "long-name": "SG5",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Sluice Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG6.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG6.json
new file mode 100644
index 000000000..ba45717f0
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG6.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-SG6",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "SG6",
+ "long-name": "SG6",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Sluice Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG7.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG7.json
new file mode 100644
index 000000000..7e9a67caa
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG7.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-SG7",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "SG7",
+ "long-name": "SG7",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Sluice Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG8.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG8.json
new file mode 100644
index 000000000..824c43c24
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG8.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-SG8",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "SG8",
+ "long-name": "SG8",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Sluice Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG9.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG9.json
new file mode 100644
index 000000000..d41219cb3
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-SG9.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-SG9",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "SG9",
+ "long-name": "SG9",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Sluice Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG1.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG1.json
new file mode 100644
index 000000000..869c88504
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG1.json
@@ -0,0 +1,38 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG1",
+ "latitude": 36.15063611111111,
+ "longitude": -96.25222222222222,
+ "active": true,
+ "public-name": "TG1",
+ "long-name": "TG1",
+ "timezone-name": "US/Central",
+ "location-type": "Tainter Gate",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 96.25166666666667,
+ "published-latitude": 36.147777777777776,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG10.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG10.json
new file mode 100644
index 000000000..e56a27e9f
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG10.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG10",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG10",
+ "long-name": "TG10",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG11.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG11.json
new file mode 100644
index 000000000..5931636ad
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG11.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG11",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG11",
+ "long-name": "TG11",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG12.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG12.json
new file mode 100644
index 000000000..8d0970120
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG12.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG12",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG12",
+ "long-name": "TG12",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG13.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG13.json
new file mode 100644
index 000000000..9c233b845
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG13.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG13",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG13",
+ "long-name": "TG13",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG14.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG14.json
new file mode 100644
index 000000000..4be75262b
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG14.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG14",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG14",
+ "long-name": "TG14",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG15.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG15.json
new file mode 100644
index 000000000..b0e5d6530
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG15.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG15",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG15",
+ "long-name": "TG15",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG16.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG16.json
new file mode 100644
index 000000000..aae36037e
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG16.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG16",
+ "latitude": 36.1506361111111,
+ "longitude": -96.2525083333333,
+ "active": true,
+ "public-name": "1G16",
+ "long-name": "1G16",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": -96.2516666666667,
+ "published-latitude": 36.1516666666667,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG17.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG17.json
new file mode 100644
index 000000000..eb309dea8
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG17.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG17",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG17",
+ "long-name": "TG17",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG18.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG18.json
new file mode 100644
index 000000000..22224f531
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG18.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG18",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG18",
+ "long-name": "TG18",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG2.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG2.json
new file mode 100644
index 000000000..6f7ed806b
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG2.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG2",
+ "latitude": 36.1506361111111,
+ "longitude": -96.2516666666667,
+ "active": true,
+ "public-name": "TG2",
+ "long-name": "TG2",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 96.2516666666667,
+ "published-latitude": 36.1516666666667,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG3.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG3.json
new file mode 100644
index 000000000..c66212f58
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG3.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG3",
+ "latitude": 36.15063611111111,
+ "longitude": -96.25250833333334,
+ "active": true,
+ "public-name": "TG3",
+ "long-name": "TG3",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": -96.25166666666667,
+ "published-latitude": 36.151666666666664,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG4.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG4.json
new file mode 100644
index 000000000..7fa0d1a30
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG4.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG4",
+ "latitude": 36.1506371,
+ "longitude": -96.2516667,
+ "active": true,
+ "public-name": "TG4",
+ "long-name": "TG4",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 96.2516666666667,
+ "published-latitude": 36.1516666666667,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG5.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG5.json
new file mode 100644
index 000000000..5ceca1b65
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG5.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG5",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG5",
+ "long-name": "TG5",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG6.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG6.json
new file mode 100644
index 000000000..31e1f7b3d
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG6.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG6",
+ "latitude": 36.1506371,
+ "longitude": -96.2516667,
+ "active": true,
+ "public-name": "TG6",
+ "long-name": "TG6",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 96.2516666666667,
+ "published-latitude": 36.1516666666667,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG7.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG7.json
new file mode 100644
index 000000000..2b211173b
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG7.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG7",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG7",
+ "long-name": "TG7",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG8.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG8.json
new file mode 100644
index 000000000..07ec7a769
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG8.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG8",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG8",
+ "long-name": "TG8",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG9.json b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG9.json
new file mode 100644
index 000000000..e143c7e2a
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Outlets/KEYS-TG9.json
@@ -0,0 +1,37 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-TG9",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "TG9",
+ "long-name": "TG9",
+ "timezone-name": "US/Central",
+ "location-kind": "OUTLET",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "rating-group-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Tainter Gates"
+ },
+ "rating-spec-id": "KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production",
+ "rating-category-id": {
+ "office-id": "SWT",
+ "name": "Rating"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Projects/KEYS.json b/cda-etl/data/sample-data/SWT/Projects/KEYS.json
new file mode 100644
index 000000000..825124afd
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Projects/KEYS.json
@@ -0,0 +1,36 @@
+{
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS",
+ "latitude": 36.151666666666664,
+ "longitude": -96.25166666666667,
+ "active": true,
+ "public-name": "Keystone Lake",
+ "long-name": "NULL",
+ "description": "NULL",
+ "timezone-name": "US/Central",
+ "location-type": "Reservoir",
+ "location-kind": "PROJECT",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": -96.25166666666667,
+ "published-latitude": 36.151666666666664,
+ "vertical-datum": "NGVD29",
+ "elevation": 187.522,
+ "map-label": "Keystone Lake",
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ },
+ "federal-cost": 0,
+ "non-federal-cost": 0,
+ "cost-unit": "$",
+ "federal-o-and-m-cost": 0,
+ "non-federal-o-and-m-cost": 0,
+ "project-owner": "USACE",
+ "sedimentation-desc": "High sediment inflow from both the Cimarron River and the Arkansas River.",
+ "downstream-urban-desc": "The cities of Tulsa, Oklahoma, Muskogee, Oklahoma, and Van Buren, Arkansas are on the mainstem of the Arkansas River below Keystone Lake.",
+ "bank-full-capacity-desc": "Bank Full Capacity at Tulsa is 104,500 cfs (stage of 15.0 ft). Bank Full Capacity at Muskogee is 120100 cfs (stage of 20.0 ft). Bank Full Capacity at Van Buren is a stage of 22.0 ft."
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Area.Linear.Production.por.json b/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Area.Linear.Production.por.json
deleted file mode 100644
index f4d9a3f90..000000000
--- a/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Area.Linear.Production.por.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "xml": "\n\n \n Elev;Area\n Linear\n \n \n Elev\n LINEAR\n NEAREST\n NEAREST\n \n \n Area\n \n \n \n EUFA.Elev;Area.Linear.Production\n Elev;Area.Linear\n EUFA\n Production\n \n PREVIOUS\n ERROR\n PREVIOUS\n true\n false\n false\n false\n \n 2222233332\n \n 2222233332\n \n \n \n EUFA.Elev;Area.Linear.Production\n \n NGVD-29\n 497.999\n \n NGVD-29\n 0.0\n \n \n NAVD-88\n 0.3527\n \n \n ft;acre\n 2012-01-31T06:00:00Z\n \n 2012-11-05T14:37:00Z\n true\n \n \n \n 514.0\n 1783.0\n \n \n 515.0\n 2250.0\n \n \n 516.0\n 2813.0\n \n \n 517.0\n 3386.0\n \n \n 518.0\n 3833.0\n \n \n 519.0\n 4203.0\n \n \n 520.0\n 4520.0\n \n \n 521.0\n 4754.0\n \n \n 522.0\n 4971.0\n \n \n 523.0\n 5211.0\n \n \n 524.0\n 5465.0\n \n \n 525.0\n 5747.0\n \n \n 526.0\n 6068.0\n \n \n 527.0\n 6462.0\n \n \n 528.0\n 6867.0\n \n \n 529.0\n 7383.0\n \n \n 530.0\n 7917.0\n \n \n 531.0\n 8424.0\n \n \n 532.0\n 8923.0\n \n \n 533.0\n 9411.0\n \n \n 534.0\n 9831.0\n \n \n 535.0\n 10226.0\n \n \n 536.0\n 10663.0\n \n \n 537.0\n 11208.0\n \n \n 538.0\n 11851.0\n \n \n 539.0\n 12461.0\n \n \n 540.0\n 13029.0\n \n \n 541.0\n 13702.0\n \n \n 542.0\n 14319.0\n \n \n 543.0\n 14922.0\n \n \n 544.0\n 15617.0\n \n \n 545.0\n 16359.0\n \n \n 546.0\n 17020.0\n \n \n 547.0\n 17680.0\n \n \n 548.0\n 18461.0\n \n \n 549.0\n 19237.0\n \n \n 550.0\n 20111.0\n \n \n 551.0\n 21097.0\n \n \n 552.0\n 22300.0\n \n \n 553.0\n 23484.0\n \n \n 554.0\n 24774.0\n \n \n 555.0\n 26008.0\n \n \n 556.0\n 27161.0\n \n \n 557.0\n 28236.0\n \n \n 558.0\n 29326.0\n \n \n 559.0\n 30609.0\n \n \n 560.0\n 31994.0\n \n \n 561.0\n 33837.0\n \n \n 562.0\n 36094.0\n \n \n 563.0\n 38320.0\n \n \n 564.0\n 40632.0\n \n \n 565.0\n 42719.0\n \n \n 566.0\n 44925.0\n \n \n 567.0\n 47375.0\n \n \n 568.0\n 49919.0\n \n \n 569.0\n 52416.0\n \n \n 570.0\n 54732.0\n \n \n 571.0\n 57128.0\n \n \n 572.0\n 59472.0\n \n \n 573.0\n 61715.0\n \n \n 574.0\n 63946.0\n \n \n 575.0\n 66422.0\n \n \n 576.0\n 69104.0\n \n \n 577.0\n 71787.0\n \n \n 578.0\n 74333.0\n \n \n 579.0\n 76935.0\n \n \n 580.0\n 79882.0\n \n \n 581.0\n 82700.0\n \n \n 582.0\n 85460.0\n \n \n 583.0\n 88413.0\n \n \n 584.0\n 91294.0\n \n \n 585.0\n 94526.0\n \n \n 586.0\n 95587.0\n \n \n 587.0\n 97819.0\n \n \n 588.0\n 101170.0\n \n \n 589.0\n 104140.0\n \n \n 590.0\n 107970.0\n \n \n 591.0\n 112400.0\n \n \n 592.0\n 116020.0\n \n \n 593.0\n 119810.0\n \n \n 594.0\n 123290.0\n \n \n 595.0\n 126840.0\n \n \n 596.0\n 131040.0\n \n \n 597.0\n 135050.0\n \n \n 598.0\n 138350.0\n \n \n 599.0\n 141740.0\n \n \n 600.0\n 146240.0\n \n \n 601.0\n 150470.0\n \n \n 602.0\n 154400.0\n \n \n 603.0\n 158100.0\n \n \n 604.0\n 162150.0\n \n \n 605.0\n 166970.0\n \n \n 606.0\n 171090.0\n \n \n 607.0\n 174980.0\n \n \n 608.0\n 179660.0\n \n \n 609.0\n 184630.0\n \n \n 610.0\n 189320.0\n \n \n 611.0\n 195150.0\n \n \n 612.0\n 200150.0\n \n \n \n \n EUFA.Elev;Area.Linear.Production\n \n NGVD-29\n 497.999\n \n NGVD-29\n 0.0\n \n \n NAVD-88\n 0.3527\n \n \n ft;acre\n 2016-05-01T06:06:00Z\n \n 2016-06-30T16:12:00Z\n true\n \n \n \n 487.0\n 0.0\n \n \n 490.0\n 1.0\n \n \n 491.0\n 1.1\n \n \n 492.0\n 2.0\n \n \n 493.0\n 3.0\n \n \n 494.0\n 3.1\n \n \n 495.0\n 5.0\n \n \n 496.0\n 6.0\n \n \n 497.0\n 8.0\n \n \n 498.0\n 10.0\n \n \n 499.0\n 12.0\n \n \n 500.0\n 21.0\n \n \n 501.0\n 55.0\n \n \n 502.0\n 107.0\n \n \n 503.0\n 173.0\n \n \n 504.0\n 245.0\n \n \n 505.0\n 325.0\n \n \n 506.0\n 419.0\n \n \n 507.0\n 514.0\n \n \n 508.0\n 643.0\n \n \n 509.0\n 849.0\n \n \n 510.0\n 1094.0\n \n \n 511.0\n 1365.0\n \n \n 512.0\n 1718.0\n \n \n 513.0\n 2144.0\n \n \n 514.0\n 2679.0\n \n \n 515.0\n 3218.0\n \n \n 516.0\n 3638.0\n \n \n 517.0\n 4013.0\n \n \n 518.0\n 4327.0\n \n \n 519.0\n 4634.0\n \n \n 520.0\n 4925.0\n \n \n 521.0\n 5172.0\n \n \n 522.0\n 5421.0\n \n \n 523.0\n 5699.0\n \n \n 524.0\n 5994.0\n \n \n 525.0\n 6306.0\n \n \n 526.0\n 6683.0\n \n \n 527.0\n 7183.0\n \n \n 528.0\n 7671.0\n \n \n 529.0\n 8145.0\n \n \n 530.0\n 8637.0\n \n \n 531.0\n 9127.0\n \n \n 532.0\n 9551.0\n \n \n 533.0\n 9930.0\n \n \n 534.0\n 10337.0\n \n \n 535.0\n 10838.0\n \n \n 536.0\n 11369.0\n \n \n 537.0\n 11923.0\n \n \n 538.0\n 12416.0\n \n \n 539.0\n 12943.0\n \n \n 540.0\n 13511.0\n \n \n 541.0\n 14162.0\n \n \n 542.0\n 14843.0\n \n \n 543.0\n 15478.0\n \n \n 544.0\n 16202.0\n \n \n 545.0\n 16984.0\n \n \n 546.0\n 17676.0\n \n \n 547.0\n 18365.0\n \n \n 548.0\n 19113.0\n \n \n 549.0\n 20008.0\n \n \n 550.0\n 20976.0\n \n \n 551.0\n 22004.0\n \n \n 552.0\n 23206.0\n \n \n 553.0\n 24387.0\n \n \n 554.0\n 25559.0\n \n \n 555.0\n 26757.0\n \n \n 556.0\n 27941.0\n \n \n 557.0\n 29169.0\n \n \n 558.0\n 30455.0\n \n \n 559.0\n 31830.0\n \n \n 560.0\n 33687.0\n \n \n 561.0\n 35854.0\n \n \n 562.0\n 37906.0\n \n \n 563.0\n 40007.0\n \n \n 564.0\n 41991.0\n \n \n 565.0\n 43953.0\n \n \n 566.0\n 46101.0\n \n \n 567.0\n 48346.0\n \n \n 568.0\n 50715.0\n \n \n 569.0\n 53039.0\n \n \n 570.0\n 55459.0\n \n \n 571.0\n 57678.0\n \n \n 572.0\n 59746.0\n \n \n 573.0\n 61891.0\n \n \n 574.0\n 64165.0\n \n \n 575.0\n 66608.0\n \n \n 576.0\n 69228.0\n \n \n 577.0\n 71922.0\n \n \n 578.0\n 74422.0\n \n \n 579.0\n 77025.0\n \n \n 580.0\n 79896.0\n \n \n 581.0\n 82680.0\n \n \n 582.0\n 85519.0\n \n \n 583.0\n 88083.0\n \n \n 584.0\n 91410.0\n \n \n 585.0\n 93544.0\n \n \n 586.0\n 95587.0\n \n \n 587.0\n 97819.0\n \n \n 588.0\n 101169.0\n \n \n 589.0\n 104144.0\n \n \n 590.0\n 107968.0\n \n \n 591.0\n 112398.0\n \n \n 592.0\n 116017.0\n \n \n 593.0\n 119806.0\n \n \n 594.0\n 123292.0\n \n \n 595.0\n 126843.0\n \n \n 596.0\n 131038.0\n \n \n 597.0\n 135054.0\n \n \n 598.0\n 138348.0\n \n \n 599.0\n 141740.0\n \n \n 600.0\n 146243.0\n \n \n 601.0\n 150469.0\n \n \n 602.0\n 154398.0\n \n \n 603.0\n 158100.0\n \n \n 604.0\n 162145.0\n \n \n 605.0\n 166970.0\n \n \n 606.0\n 171093.0\n \n \n 607.0\n 174979.0\n \n \n 608.0\n 179661.0\n \n \n 609.0\n 184632.0\n \n \n 610.0\n 189319.0\n \n \n 611.0\n 195154.0\n \n \n 612.0\n 200150.0\n \n \n \n\n"
-}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Area.Linear.Production.xml b/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Area.Linear.Production.xml
new file mode 100644
index 000000000..2ebd38804
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Area.Linear.Production.xml
@@ -0,0 +1,974 @@
+
+
+
+ Elev;Area
+ Linear
+
+
+ Elev
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Area
+
+
+
+ EUFA.Elev;Area.Linear.Production
+ Elev;Area.Linear
+ EUFA
+ Production
+
+ PREVIOUS
+ ERROR
+ PREVIOUS
+ true
+ false
+ false
+ false
+
+ 2222233332
+
+ 2222233332
+
+
+
+ EUFA.Elev;Area.Linear.Production
+
+ NGVD-29
+ 497.999
+
+ NGVD-29
+ 0.0
+
+
+ NAVD-88
+ 0.3527
+
+
+ ft;acre
+ 2012-01-31T06:00:00Z
+
+ 2012-11-05T14:37:00Z
+ true
+
+
+
+ 514.0
+ 1783.0
+
+
+ 515.0
+ 2250.0
+
+
+ 516.0
+ 2813.0
+
+
+ 517.0
+ 3386.0
+
+
+ 518.0
+ 3833.0
+
+
+ 519.0
+ 4203.0
+
+
+ 520.0
+ 4520.0
+
+
+ 521.0
+ 4754.0
+
+
+ 522.0
+ 4971.0
+
+
+ 523.0
+ 5211.0
+
+
+ 524.0
+ 5465.0
+
+
+ 525.0
+ 5747.0
+
+
+ 526.0
+ 6068.0
+
+
+ 527.0
+ 6462.0
+
+
+ 528.0
+ 6867.0
+
+
+ 529.0
+ 7383.0
+
+
+ 530.0
+ 7917.0
+
+
+ 531.0
+ 8424.0
+
+
+ 532.0
+ 8923.0
+
+
+ 533.0
+ 9411.0
+
+
+ 534.0
+ 9831.0
+
+
+ 535.0
+ 10226.0
+
+
+ 536.0
+ 10663.0
+
+
+ 537.0
+ 11208.0
+
+
+ 538.0
+ 11851.0
+
+
+ 539.0
+ 12461.0
+
+
+ 540.0
+ 13029.0
+
+
+ 541.0
+ 13702.0
+
+
+ 542.0
+ 14319.0
+
+
+ 543.0
+ 14922.0
+
+
+ 544.0
+ 15617.0
+
+
+ 545.0
+ 16359.0
+
+
+ 546.0
+ 17020.0
+
+
+ 547.0
+ 17680.0
+
+
+ 548.0
+ 18461.0
+
+
+ 549.0
+ 19237.0
+
+
+ 550.0
+ 20111.0
+
+
+ 551.0
+ 21097.0
+
+
+ 552.0
+ 22300.0
+
+
+ 553.0
+ 23484.0
+
+
+ 554.0
+ 24774.0
+
+
+ 555.0
+ 26008.0
+
+
+ 556.0
+ 27161.0
+
+
+ 557.0
+ 28236.0
+
+
+ 558.0
+ 29326.0
+
+
+ 559.0
+ 30609.0
+
+
+ 560.0
+ 31994.0
+
+
+ 561.0
+ 33837.0
+
+
+ 562.0
+ 36094.0
+
+
+ 563.0
+ 38320.0
+
+
+ 564.0
+ 40632.0
+
+
+ 565.0
+ 42719.0
+
+
+ 566.0
+ 44925.0
+
+
+ 567.0
+ 47375.0
+
+
+ 568.0
+ 49919.0
+
+
+ 569.0
+ 52416.0
+
+
+ 570.0
+ 54732.0
+
+
+ 571.0
+ 57128.0
+
+
+ 572.0
+ 59472.0
+
+
+ 573.0
+ 61715.0
+
+
+ 574.0
+ 63946.0
+
+
+ 575.0
+ 66422.0
+
+
+ 576.0
+ 69104.0
+
+
+ 577.0
+ 71787.0
+
+
+ 578.0
+ 74333.0
+
+
+ 579.0
+ 76935.0
+
+
+ 580.0
+ 79882.0
+
+
+ 581.0
+ 82700.0
+
+
+ 582.0
+ 85460.0
+
+
+ 583.0
+ 88413.0
+
+
+ 584.0
+ 91294.0
+
+
+ 585.0
+ 94526.0
+
+
+ 586.0
+ 95587.0
+
+
+ 587.0
+ 97819.0
+
+
+ 588.0
+ 101170.0
+
+
+ 589.0
+ 104140.0
+
+
+ 590.0
+ 107970.0
+
+
+ 591.0
+ 112400.0
+
+
+ 592.0
+ 116020.0
+
+
+ 593.0
+ 119810.0
+
+
+ 594.0
+ 123290.0
+
+
+ 595.0
+ 126840.0
+
+
+ 596.0
+ 131040.0
+
+
+ 597.0
+ 135050.0
+
+
+ 598.0
+ 138350.0
+
+
+ 599.0
+ 141740.0
+
+
+ 600.0
+ 146240.0
+
+
+ 601.0
+ 150470.0
+
+
+ 602.0
+ 154400.0
+
+
+ 603.0
+ 158100.0
+
+
+ 604.0
+ 162150.0
+
+
+ 605.0
+ 166970.0
+
+
+ 606.0
+ 171090.0
+
+
+ 607.0
+ 174980.0
+
+
+ 608.0
+ 179660.0
+
+
+ 609.0
+ 184630.0
+
+
+ 610.0
+ 189320.0
+
+
+ 611.0
+ 195150.0
+
+
+ 612.0
+ 200150.0
+
+
+
+
+ EUFA.Elev;Area.Linear.Production
+
+ NGVD-29
+ 497.999
+
+ NGVD-29
+ 0.0
+
+
+ NAVD-88
+ 0.3527
+
+
+ ft;acre
+ 2016-05-01T06:06:00Z
+
+ 2016-06-30T16:12:00Z
+ true
+
+
+
+ 487.0
+ 0.0
+
+
+ 490.0
+ 1.0
+
+
+ 491.0
+ 1.1
+
+
+ 492.0
+ 2.0
+
+
+ 493.0
+ 3.0
+
+
+ 494.0
+ 3.1
+
+
+ 495.0
+ 5.0
+
+
+ 496.0
+ 6.0
+
+
+ 497.0
+ 8.0
+
+
+ 498.0
+ 10.0
+
+
+ 499.0
+ 12.0
+
+
+ 500.0
+ 21.0
+
+
+ 501.0
+ 55.0
+
+
+ 502.0
+ 107.0
+
+
+ 503.0
+ 173.0
+
+
+ 504.0
+ 245.0
+
+
+ 505.0
+ 325.0
+
+
+ 506.0
+ 419.0
+
+
+ 507.0
+ 514.0
+
+
+ 508.0
+ 643.0
+
+
+ 509.0
+ 849.0
+
+
+ 510.0
+ 1094.0
+
+
+ 511.0
+ 1365.0
+
+
+ 512.0
+ 1718.0
+
+
+ 513.0
+ 2144.0
+
+
+ 514.0
+ 2679.0
+
+
+ 515.0
+ 3218.0
+
+
+ 516.0
+ 3638.0
+
+
+ 517.0
+ 4013.0
+
+
+ 518.0
+ 4327.0
+
+
+ 519.0
+ 4634.0
+
+
+ 520.0
+ 4925.0
+
+
+ 521.0
+ 5172.0
+
+
+ 522.0
+ 5421.0
+
+
+ 523.0
+ 5699.0
+
+
+ 524.0
+ 5994.0
+
+
+ 525.0
+ 6306.0
+
+
+ 526.0
+ 6683.0
+
+
+ 527.0
+ 7183.0
+
+
+ 528.0
+ 7671.0
+
+
+ 529.0
+ 8145.0
+
+
+ 530.0
+ 8637.0
+
+
+ 531.0
+ 9127.0
+
+
+ 532.0
+ 9551.0
+
+
+ 533.0
+ 9930.0
+
+
+ 534.0
+ 10337.0
+
+
+ 535.0
+ 10838.0
+
+
+ 536.0
+ 11369.0
+
+
+ 537.0
+ 11923.0
+
+
+ 538.0
+ 12416.0
+
+
+ 539.0
+ 12943.0
+
+
+ 540.0
+ 13511.0
+
+
+ 541.0
+ 14162.0
+
+
+ 542.0
+ 14843.0
+
+
+ 543.0
+ 15478.0
+
+
+ 544.0
+ 16202.0
+
+
+ 545.0
+ 16984.0
+
+
+ 546.0
+ 17676.0
+
+
+ 547.0
+ 18365.0
+
+
+ 548.0
+ 19113.0
+
+
+ 549.0
+ 20008.0
+
+
+ 550.0
+ 20976.0
+
+
+ 551.0
+ 22004.0
+
+
+ 552.0
+ 23206.0
+
+
+ 553.0
+ 24387.0
+
+
+ 554.0
+ 25559.0
+
+
+ 555.0
+ 26757.0
+
+
+ 556.0
+ 27941.0
+
+
+ 557.0
+ 29169.0
+
+
+ 558.0
+ 30455.0
+
+
+ 559.0
+ 31830.0
+
+
+ 560.0
+ 33687.0
+
+
+ 561.0
+ 35854.0
+
+
+ 562.0
+ 37906.0
+
+
+ 563.0
+ 40007.0
+
+
+ 564.0
+ 41991.0
+
+
+ 565.0
+ 43953.0
+
+
+ 566.0
+ 46101.0
+
+
+ 567.0
+ 48346.0
+
+
+ 568.0
+ 50715.0
+
+
+ 569.0
+ 53039.0
+
+
+ 570.0
+ 55459.0
+
+
+ 571.0
+ 57678.0
+
+
+ 572.0
+ 59746.0
+
+
+ 573.0
+ 61891.0
+
+
+ 574.0
+ 64165.0
+
+
+ 575.0
+ 66608.0
+
+
+ 576.0
+ 69228.0
+
+
+ 577.0
+ 71922.0
+
+
+ 578.0
+ 74422.0
+
+
+ 579.0
+ 77025.0
+
+
+ 580.0
+ 79896.0
+
+
+ 581.0
+ 82680.0
+
+
+ 582.0
+ 85519.0
+
+
+ 583.0
+ 88083.0
+
+
+ 584.0
+ 91410.0
+
+
+ 585.0
+ 93544.0
+
+
+ 586.0
+ 95587.0
+
+
+ 587.0
+ 97819.0
+
+
+ 588.0
+ 101169.0
+
+
+ 589.0
+ 104144.0
+
+
+ 590.0
+ 107968.0
+
+
+ 591.0
+ 112398.0
+
+
+ 592.0
+ 116017.0
+
+
+ 593.0
+ 119806.0
+
+
+ 594.0
+ 123292.0
+
+
+ 595.0
+ 126843.0
+
+
+ 596.0
+ 131038.0
+
+
+ 597.0
+ 135054.0
+
+
+ 598.0
+ 138348.0
+
+
+ 599.0
+ 141740.0
+
+
+ 600.0
+ 146243.0
+
+
+ 601.0
+ 150469.0
+
+
+ 602.0
+ 154398.0
+
+
+ 603.0
+ 158100.0
+
+
+ 604.0
+ 162145.0
+
+
+ 605.0
+ 166970.0
+
+
+ 606.0
+ 171093.0
+
+
+ 607.0
+ 174979.0
+
+
+ 608.0
+ 179661.0
+
+
+ 609.0
+ 184632.0
+
+
+ 610.0
+ 189319.0
+
+
+ 611.0
+ 195154.0
+
+
+ 612.0
+ 200150.0
+
+
+
+
diff --git a/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Stor.Linear.Production.por.json b/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Stor.Linear.Production.por.json
deleted file mode 100644
index ccb190fb6..000000000
--- a/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Stor.Linear.Production.por.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "xml": "\n\n \n Elev;Stor\n Linear\n \n \n Elev\n LINEAR\n NEAREST\n NEAREST\n \n \n Stor\n \n \n \n EUFA.Elev;Stor.Linear.Production\n Elev;Stor.Linear\n EUFA\n Production\n \n PREVIOUS\n ERROR\n PREVIOUS\n true\n false\n false\n false\n \n 2222233332\n \n 2222233332\n \n \n \n EUFA.Elev;Stor.Linear.Production\n \n NGVD-29\n 497.999\n \n NGVD-29\n 0.0\n \n \n NAVD-88\n 0.3527\n \n \n ft;ac-ft\n 2012-01-31T06:00:00Z\n \n 2012-11-05T14:37:00Z\n true\n \n \n \n 514.0\n 6712.0\n \n \n 515.0\n 8716.0\n \n \n 516.0\n 11238.0\n \n \n 517.0\n 14345.0\n \n \n 518.0\n 17963.0\n \n \n 519.0\n 21980.0\n \n \n 520.0\n 26350.0\n \n \n 521.0\n 30989.0\n \n \n 522.0\n 35853.0\n \n \n 523.0\n 40940.0\n \n \n 524.0\n 46280.0\n \n \n 525.0\n 51881.0\n \n \n 526.0\n 57785.0\n \n \n 527.0\n 64046.0\n \n \n 528.0\n 70696.0\n \n \n 529.0\n 77811.0\n \n \n 530.0\n 85464.0\n \n \n 531.0\n 93637.0\n \n \n 532.0\n 102300.0\n \n \n 533.0\n 111480.0\n \n \n 534.0\n 121110.0\n \n \n 535.0\n 131140.0\n \n \n 536.0\n 141570.0\n \n \n 537.0\n 152500.0\n \n \n 538.0\n 164020.0\n \n \n 539.0\n 176190.0\n \n \n 540.0\n 188930.0\n \n \n 541.0\n 202290.0\n \n \n 542.0\n 216310.0\n \n \n 543.0\n 230940.0\n \n \n 544.0\n 246190.0\n \n \n 545.0\n 262180.0\n \n \n 546.0\n 278870.0\n \n \n 547.0\n 296220.0\n \n \n 548.0\n 314290.0\n \n \n 549.0\n 333130.0\n \n \n 550.0\n 352800.0\n \n \n 551.0\n 373390.0\n \n \n 552.0\n 395080.0\n \n \n 553.0\n 417970.0\n \n \n 554.0\n 442100.0\n \n \n 555.0\n 467490.0\n \n \n 556.0\n 494090.0\n \n \n 557.0\n 521790.0\n \n \n 558.0\n 550560.0\n \n \n 559.0\n 580510.0\n \n \n 560.0\n 611800.0\n \n \n 561.0\n 644640.0\n \n \n 562.0\n 679620.0\n \n \n 563.0\n 716820.0\n \n \n 564.0\n 756310.0\n \n \n 565.0\n 797990.0\n \n \n 566.0\n 841810.0\n \n \n 567.0\n 887900.0\n \n \n 568.0\n 936550.0\n \n \n 569.0\n 987730.0\n \n \n 570.0\n 1041300.0\n \n \n 571.0\n 1097200.0\n \n \n 572.0\n 1155600.0\n \n \n 573.0\n 1216200.0\n \n \n 574.0\n 1279000.0\n \n \n 575.0\n 1344100.0\n \n \n 576.0\n 1411900.0\n \n \n 577.0\n 1482300.0\n \n \n 578.0\n 1555400.0\n \n \n 579.0\n 1631000.0\n \n \n 580.0\n 1709400.0\n \n \n 581.0\n 1790700.0\n \n \n 582.0\n 1874800.0\n \n \n 583.0\n 1961700.0\n \n \n 584.0\n 2051600.0\n \n \n 585.0\n 2144300.0\n \n \n 586.0\n 2236000.0\n \n \n 587.0\n 2332900.0\n \n \n 588.0\n 2433400.0\n \n \n 589.0\n 2536500.0\n \n \n 590.0\n 2642600.0\n \n \n 591.0\n 2753500.0\n \n \n 592.0\n 2868100.0\n \n \n 593.0\n 2987500.0\n \n \n 594.0\n 3110000.0\n \n \n 595.0\n 3235000.0\n \n \n 596.0\n 3365700.0\n \n \n 597.0\n 3499900.0\n \n \n 598.0\n 3637200.0\n \n \n 599.0\n 3777800.0\n \n \n 600.0\n 3923000.0\n \n \n 601.0\n 4075400.0\n \n \n 602.0\n 4230000.0\n \n \n 603.0\n 4387100.0\n \n \n 604.0\n 4547600.0\n \n \n 605.0\n 4718200.0\n \n \n 606.0\n 4889300.0\n \n \n 607.0\n 5063700.0\n \n \n 608.0\n 5251000.0\n \n \n 609.0\n 5434400.0\n \n \n 610.0\n 5623900.0\n \n \n 611.0\n 5832000.0\n \n \n 612.0\n 6034600.0\n \n \n \n \n EUFA.Elev;Stor.Linear.Production\n \n NGVD-29\n 497.999\n \n NGVD-29\n 0.0\n \n \n NAVD-88\n 0.3527\n \n \n ft;ac-ft\n 2016-05-01T06:06:00Z\n \n 2016-06-30T16:17:00Z\n true\n \n \n \n 487.0\n 0.0\n \n \n 491.0\n 1.0\n \n \n 492.0\n 3.0\n \n \n 493.0\n 5.0\n \n \n 494.0\n 8.0\n \n \n 495.0\n 12.0\n \n \n 496.0\n 17.0\n \n \n 497.0\n 24.0\n \n \n 498.0\n 33.0\n \n \n 499.0\n 44.0\n \n \n 500.0\n 60.0\n \n \n 501.0\n 94.0\n \n \n 502.0\n 176.0\n \n \n 503.0\n 313.0\n \n \n 504.0\n 523.0\n \n \n 505.0\n 807.0\n \n \n 506.0\n 1179.0\n \n \n 507.0\n 1644.0\n \n \n 508.0\n 2219.0\n \n \n 509.0\n 2958.0\n \n \n 510.0\n 3926.0\n \n \n 511.0\n 5149.0\n \n \n 512.0\n 6684.0\n \n \n 513.0\n 8609.0\n \n \n 514.0\n 11010.0\n \n \n 515.0\n 13967.0\n \n \n 516.0\n 17401.0\n \n \n 517.0\n 21230.0\n \n \n 518.0\n 25405.0\n \n \n 519.0\n 29887.0\n \n \n 520.0\n 34665.0\n \n \n 521.0\n 39718.0\n \n \n 522.0\n 45011.0\n \n \n 523.0\n 50570.0\n \n \n 524.0\n 56416.0\n \n \n 525.0\n 62563.0\n \n \n 526.0\n 69050.0\n \n \n 527.0\n 75975.0\n \n \n 528.0\n 83407.0\n \n \n 529.0\n 91312.0\n \n \n 530.0\n 99705.0\n \n \n 531.0\n 108586.0\n \n \n 532.0\n 117935.0\n \n \n 533.0\n 127674.0\n \n \n 534.0\n 137802.0\n \n \n 535.0\n 148381.0\n \n \n 536.0\n 159482.0\n \n \n 537.0\n 171124.0\n \n \n 538.0\n 183300.0\n \n \n 539.0\n 195973.0\n \n \n 540.0\n 209196.0\n \n \n 541.0\n 223025.0\n \n \n 542.0\n 237528.0\n \n \n 543.0\n 252699.0\n \n \n 544.0\n 268515.0\n \n \n 545.0\n 285119.0\n \n \n 546.0\n 302449.0\n \n \n 547.0\n 320469.0\n \n \n 548.0\n 339195.0\n \n \n 549.0\n 358742.0\n \n \n 550.0\n 379228.0\n \n \n 551.0\n 400705.0\n \n \n 552.0\n 423307.0\n \n \n 553.0\n 447097.0\n \n \n 554.0\n 472076.0\n \n \n 555.0\n 498236.0\n \n \n 556.0\n 525587.0\n \n \n 557.0\n 554134.0\n \n \n 558.0\n 583931.0\n \n \n 559.0\n 615062.0\n \n \n 560.0\n 647762.0\n \n \n 561.0\n 682545.0\n \n \n 562.0\n 719417.0\n \n \n 563.0\n 758383.0\n \n \n 564.0\n 799385.0\n \n \n 565.0\n 842352.0\n \n \n 566.0\n 887366.0\n \n \n 567.0\n 934588.0\n \n \n 568.0\n 984118.0\n \n \n 569.0\n 1036000.0\n \n \n 570.0\n 1090258.0\n \n \n 571.0\n 1146844.0\n \n \n 572.0\n 1205542.0\n \n \n 573.0\n 1266338.0\n \n \n 574.0\n 1329363.0\n \n \n 575.0\n 1394722.0\n \n \n 576.0\n 1462618.0\n \n \n 577.0\n 1533217.0\n \n \n 578.0\n 1606387.0\n \n \n 579.0\n 1682089.0\n \n \n 580.0\n 1760535.0\n \n \n 581.0\n 1841851.0\n \n \n 582.0\n 1925914.0\n \n \n 583.0\n 2012724.0\n \n \n 584.0\n 2102363.0\n \n \n 585.0\n 2194857.0\n \n \n 586.0\n 2289420.66\n \n \n 587.0\n 2386121.51\n \n \n 588.0\n 2485610.81\n \n \n 589.0\n 2588263.72\n \n \n 590.0\n 2694313.98\n \n \n 591.0\n 2804489.55\n \n \n 592.0\n 2918692.28\n \n \n 593.0\n 3036598.7\n \n \n 594.0\n 3158143.54\n \n \n 595.0\n 3283206.83\n \n \n 596.0\n 3412141.65\n \n \n 597.0\n 3545182.6\n \n \n 598.0\n 3681880.29\n \n \n 599.0\n 3821920.87\n \n \n 600.0\n 3965906.5\n \n \n 601.0\n 4114257.48\n \n \n 602.0\n 4266686.76\n \n \n 603.0\n 4422932.11\n \n \n 604.0\n 4583050.35\n \n \n 605.0\n 4747601.95\n \n \n 606.0\n 4916629.26\n \n \n 607.0\n 5089661.63\n \n \n 608.0\n 5266976.48\n \n \n 609.0\n 5449117.32\n \n \n 610.0\n 5636087.93\n \n \n 611.0\n 5828317.05\n \n \n 612.0\n 6025963.79\n \n \n \n\n"
-}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Stor.Linear.Production.xml b/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Stor.Linear.Production.xml
new file mode 100644
index 000000000..ec2df0d8d
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Ratings/EUFA.Elev;Stor.Linear.Production.xml
@@ -0,0 +1,960 @@
+
+
+
+ Elev;Stor
+ Linear
+
+
+ Elev
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Stor
+
+
+
+ EUFA.Elev;Stor.Linear.Production
+ Elev;Stor.Linear
+ EUFA
+ Production
+
+ PREVIOUS
+ ERROR
+ PREVIOUS
+ true
+ false
+ false
+ false
+
+ 2222233332
+
+ 2222233332
+
+
+
+ EUFA.Elev;Stor.Linear.Production
+
+ NGVD-29
+ 497.999
+
+ NAVD-88
+ 0.3527
+
+
+ ft;ac-ft
+ 2012-01-31T00:00:00-06:00
+ 2012-11-05T08:37:42-06:00
+ true
+
+
+
+ 514
+ 6712
+
+
+ 515
+ 8716
+
+
+ 516
+ 11238
+
+
+ 517
+ 14345
+
+
+ 518
+ 17963
+
+
+ 519
+ 21980
+
+
+ 520
+ 26350
+
+
+ 521
+ 30989
+
+
+ 522
+ 35853
+
+
+ 523
+ 40940
+
+
+ 524
+ 46280
+
+
+ 525
+ 51881
+
+
+ 526
+ 57785
+
+
+ 527
+ 64046
+
+
+ 528
+ 70696
+
+
+ 529
+ 77811
+
+
+ 530
+ 85464
+
+
+ 531
+ 93637
+
+
+ 532
+ 102300
+
+
+ 533
+ 111480
+
+
+ 534
+ 121110
+
+
+ 535
+ 131140
+
+
+ 536
+ 141570
+
+
+ 537
+ 152500
+
+
+ 538
+ 164020
+
+
+ 539
+ 176190
+
+
+ 540
+ 188930
+
+
+ 541
+ 202290
+
+
+ 542
+ 216310
+
+
+ 543
+ 230940
+
+
+ 544
+ 246190
+
+
+ 545
+ 262180
+
+
+ 546
+ 278870
+
+
+ 547
+ 296220
+
+
+ 548
+ 314290
+
+
+ 549
+ 333130
+
+
+ 550
+ 352800
+
+
+ 551
+ 373390
+
+
+ 552
+ 395080
+
+
+ 553
+ 417970
+
+
+ 554
+ 442100
+
+
+ 555
+ 467490
+
+
+ 556
+ 494090
+
+
+ 557
+ 521790
+
+
+ 558
+ 550560
+
+
+ 559
+ 580510
+
+
+ 560
+ 611800
+
+
+ 561
+ 644640
+
+
+ 562
+ 679620
+
+
+ 563
+ 716820
+
+
+ 564
+ 756310
+
+
+ 565
+ 797990
+
+
+ 566
+ 841810
+
+
+ 567
+ 887900
+
+
+ 568
+ 936550
+
+
+ 569
+ 987730
+
+
+ 570
+ 1041300
+
+
+ 571
+ 1097200
+
+
+ 572
+ 1155600
+
+
+ 573
+ 1216200
+
+
+ 574
+ 1279000
+
+
+ 575
+ 1344100
+
+
+ 576
+ 1411900
+
+
+ 577
+ 1482300
+
+
+ 578
+ 1555400
+
+
+ 579
+ 1631000
+
+
+ 580
+ 1709400
+
+
+ 581
+ 1790700
+
+
+ 582
+ 1874800
+
+
+ 583
+ 1961700
+
+
+ 584
+ 2051600
+
+
+ 585
+ 2144300
+
+
+ 586
+ 2236000
+
+
+ 587
+ 2332900
+
+
+ 588
+ 2433400
+
+
+ 589
+ 2536500
+
+
+ 590
+ 2642600
+
+
+ 591
+ 2753500
+
+
+ 592
+ 2868100
+
+
+ 593
+ 2987500
+
+
+ 594
+ 3110000
+
+
+ 595
+ 3235000
+
+
+ 596
+ 3365700
+
+
+ 597
+ 3499900
+
+
+ 598
+ 3637200
+
+
+ 599
+ 3777800
+
+
+ 600
+ 3923000
+
+
+ 601
+ 4075400
+
+
+ 602
+ 4230000
+
+
+ 603
+ 4387100
+
+
+ 604
+ 4547600
+
+
+ 605
+ 4718200
+
+
+ 606
+ 4889300
+
+
+ 607
+ 5063700
+
+
+ 608
+ 5251000
+
+
+ 609
+ 5434400
+
+
+ 610
+ 5623900
+
+
+ 611
+ 5832000
+
+
+ 612
+ 6034600
+
+
+
+
+ EUFA.Elev;Stor.Linear.Production
+
+ NGVD-29
+ 497.999
+
+ NAVD-88
+ 0.3527
+
+
+ ft;ac-ft
+ 2016-05-01T01:06:00-05:00
+ 2016-06-30T11:17:00-05:00
+ true
+
+
+
+ 487
+ 0
+
+
+ 491
+ 1
+
+
+ 492
+ 3
+
+
+ 493
+ 5
+
+
+ 494
+ 8
+
+
+ 495
+ 12
+
+
+ 496
+ 17
+
+
+ 497
+ 24
+
+
+ 498
+ 33
+
+
+ 499
+ 44
+
+
+ 500
+ 60
+
+
+ 501
+ 94
+
+
+ 502
+ 176
+
+
+ 503
+ 313
+
+
+ 504
+ 523
+
+
+ 505
+ 807
+
+
+ 506
+ 1179
+
+
+ 507
+ 1644
+
+
+ 508
+ 2219
+
+
+ 509
+ 2958
+
+
+ 510
+ 3926
+
+
+ 511
+ 5149
+
+
+ 512
+ 6684
+
+
+ 513
+ 8609
+
+
+ 514
+ 11010
+
+
+ 515
+ 13967
+
+
+ 516
+ 17401
+
+
+ 517
+ 21230
+
+
+ 518
+ 25405
+
+
+ 519
+ 29887
+
+
+ 520
+ 34665
+
+
+ 521
+ 39718
+
+
+ 522
+ 45011
+
+
+ 523
+ 50570
+
+
+ 524
+ 56416
+
+
+ 525
+ 62563
+
+
+ 526
+ 69050
+
+
+ 527
+ 75975
+
+
+ 528
+ 83407
+
+
+ 529
+ 91312
+
+
+ 530
+ 99705
+
+
+ 531
+ 108586
+
+
+ 532
+ 117935
+
+
+ 533
+ 127674
+
+
+ 534
+ 137802
+
+
+ 535
+ 148381
+
+
+ 536
+ 159482
+
+
+ 537
+ 171124
+
+
+ 538
+ 183300
+
+
+ 539
+ 195973
+
+
+ 540
+ 209196
+
+
+ 541
+ 223025
+
+
+ 542
+ 237528
+
+
+ 543
+ 252699
+
+
+ 544
+ 268515
+
+
+ 545
+ 285119
+
+
+ 546
+ 302449
+
+
+ 547
+ 320469
+
+
+ 548
+ 339195
+
+
+ 549
+ 358742
+
+
+ 550
+ 379228
+
+
+ 551
+ 400705
+
+
+ 552
+ 423307
+
+
+ 553
+ 447097
+
+
+ 554
+ 472076
+
+
+ 555
+ 498236
+
+
+ 556
+ 525587
+
+
+ 557
+ 554134
+
+
+ 558
+ 583931
+
+
+ 559
+ 615062
+
+
+ 560
+ 647762
+
+
+ 561
+ 682545
+
+
+ 562
+ 719417
+
+
+ 563
+ 758383
+
+
+ 564
+ 799385
+
+
+ 565
+ 842352
+
+
+ 566
+ 887366
+
+
+ 567
+ 934588
+
+
+ 568
+ 984118
+
+
+ 569
+ 1036000
+
+
+ 570
+ 1090258
+
+
+ 571
+ 1146844
+
+
+ 572
+ 1205542
+
+
+ 573
+ 1266338
+
+
+ 574
+ 1329363
+
+
+ 575
+ 1394722
+
+
+ 576
+ 1462618
+
+
+ 577
+ 1533217
+
+
+ 578
+ 1606387
+
+
+ 579
+ 1682089
+
+
+ 580
+ 1760535
+
+
+ 581
+ 1841851
+
+
+ 582
+ 1925914
+
+
+ 583
+ 2012724
+
+
+ 584
+ 2102363
+
+
+ 585
+ 2194857
+
+
+ 586
+ 2289420.66
+
+
+ 587
+ 2386121.51
+
+
+ 588
+ 2485610.81
+
+
+ 589
+ 2588263.72
+
+
+ 590
+ 2694313.98
+
+
+ 591
+ 2804489.55
+
+
+ 592
+ 2918692.28
+
+
+ 593
+ 3036598.7
+
+
+ 594
+ 3158143.54
+
+
+ 595
+ 3283206.83
+
+
+ 596
+ 3412141.65
+
+
+ 597
+ 3545182.6
+
+
+ 598
+ 3681880.29
+
+
+ 599
+ 3821920.87
+
+
+ 600
+ 3965906.5
+
+
+ 601
+ 4114257.48
+
+
+ 602
+ 4266686.76
+
+
+ 603
+ 4422932.11
+
+
+ 604
+ 4583050.35
+
+
+ 605
+ 4747601.95
+
+
+ 606
+ 4916629.26
+
+
+ 607
+ 5089661.63
+
+
+ 608
+ 5266976.48
+
+
+ 609
+ 5449117.32
+
+
+ 610
+ 5636087.93
+
+
+ 611
+ 5828317.05
+
+
+ 612
+ 6025963.79
+
+
+
+
diff --git a/cda-etl/data/sample-data/SWT/Ratings/EUFA.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production.xml b/cda-etl/data/sample-data/SWT/Ratings/EUFA.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production.xml
new file mode 100644
index 000000000..cf904ecec
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Ratings/EUFA.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production.xml
@@ -0,0 +1,4033 @@
+
+
+
+ Opening-Sluice_Gates,Elev;Flow-Sluice_Gates
+ Standard
+
+
+ Opening-Sluice_Gates
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Elev
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Flow-Sluice_Gates
+
+
+
+ EUFA.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production
+ Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard
+ EUFA
+ Production
+
+ PREVIOUS
+ NEAREST
+ PREVIOUS
+ true
+ false
+ false
+ false
+
+ 2222233332
+ 2222233332
+
+ 2222233332
+
+
+
+ EUFA.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production
+
+ NGVD-29
+ 497.999
+
+ NAVD-88
+ 0.3527
+
+
+ ft,ft;cfs
+ 1993-10-27T00:00:00-05:00
+ 2012-11-05T08:41:31-06:00
+ true
+
+
+
+
+ 500
+ 0
+
+
+ 610
+ 0
+
+
+
+
+
+ 500
+ 0
+
+
+ 505
+ 30
+
+
+ 510
+ 50
+
+
+ 515
+ 65
+
+
+ 520
+ 75
+
+
+ 530
+ 90
+
+
+ 540
+ 105
+
+
+ 550
+ 115
+
+
+ 560
+ 125
+
+
+ 580
+ 148
+
+
+ 590
+ 157
+
+
+ 599
+ 165
+
+
+ 600
+ 165
+
+
+ 610
+ 175
+
+
+
+
+
+ 500
+ 0
+
+
+ 503
+ 45
+
+
+ 505
+ 65
+
+
+ 510
+ 100
+
+
+ 515
+ 125
+
+
+ 520
+ 145
+
+
+ 530
+ 180
+
+
+ 540
+ 210
+
+
+ 550
+ 230
+
+
+ 560
+ 255
+
+
+ 580
+ 296
+
+
+ 590
+ 314
+
+
+ 600
+ 331
+
+
+ 610
+ 350
+
+
+
+
+
+ 500
+ 0
+
+
+ 502
+ 60
+
+
+ 505
+ 100
+
+
+ 510
+ 140
+
+
+ 520
+ 210
+
+
+ 525
+ 240
+
+
+ 540
+ 300
+
+
+ 560
+ 380
+
+
+ 580
+ 443
+
+
+ 590
+ 470
+
+
+ 595
+ 484
+
+
+ 600
+ 496
+
+
+ 610
+ 520
+
+
+
+
+
+ 500
+ 0
+
+
+ 503
+ 90
+
+
+ 505
+ 125
+
+
+ 510
+ 190
+
+
+ 515
+ 240
+
+
+ 520
+ 290
+
+
+ 525
+ 320
+
+
+ 535
+ 390
+
+
+ 545
+ 440
+
+
+ 555
+ 490
+
+
+ 570
+ 550
+
+
+ 580
+ 592
+
+
+ 590
+ 629
+
+
+ 595
+ 646
+
+
+ 600
+ 663
+
+
+ 610
+ 690
+
+
+
+
+
+ 500
+ 0
+
+
+ 504
+ 140
+
+
+ 510
+ 230
+
+
+ 520
+ 350
+
+
+ 530
+ 430
+
+
+ 540
+ 510
+
+
+ 550
+ 570
+
+
+ 570
+ 690
+
+
+ 580
+ 743
+
+
+ 590
+ 789
+
+
+ 600
+ 833
+
+
+ 610
+ 875
+
+
+
+
+
+ 500
+ 0
+
+
+ 503
+ 100
+
+
+ 505
+ 170
+
+
+ 508
+ 250
+
+
+ 510
+ 285
+
+
+ 515
+ 355
+
+
+ 525
+ 485
+
+
+ 535
+ 580
+
+
+ 545
+ 670
+
+
+ 555
+ 740
+
+
+ 570
+ 835
+
+
+ 580
+ 896
+
+
+ 590
+ 952
+
+
+ 600
+ 1005
+
+
+ 610
+ 1060
+
+
+
+
+
+ 500
+ 0
+
+
+ 503
+ 100
+
+
+ 505
+ 170
+
+
+ 506.5
+ 270
+
+
+ 515
+ 410
+
+
+ 520
+ 485
+
+
+ 530
+ 610
+
+
+ 540
+ 720
+
+
+ 560
+ 900
+
+
+ 570
+ 990
+
+
+ 580
+ 1054
+
+
+ 590
+ 1120
+
+
+ 600
+ 1182
+
+
+ 610
+ 1245
+
+
+
+
+
+ 500
+ 0
+
+
+ 503
+ 100
+
+
+ 505
+ 170
+
+
+ 506.5
+ 270
+
+
+ 510
+ 370
+
+
+ 515
+ 480
+
+
+ 520
+ 570
+
+
+ 530
+ 720
+
+
+ 540
+ 840
+
+
+ 550
+ 950
+
+
+ 560
+ 1050
+
+
+ 570
+ 1135
+
+
+ 580
+ 1216
+
+
+ 590
+ 1293
+
+
+ 600
+ 1365
+
+
+ 610
+ 1430
+
+
+
+
+
+ 500
+ 0
+
+
+ 503
+ 100
+
+
+ 505.5
+ 200
+
+
+ 507
+ 300
+
+
+ 510
+ 400
+
+
+ 515
+ 520
+
+
+ 525
+ 720
+
+
+ 540
+ 940
+
+
+ 550
+ 1060
+
+
+ 580
+ 1384
+
+
+ 590
+ 1472
+
+
+ 600
+ 1555
+
+
+ 610
+ 1635
+
+
+
+
+
+ 500
+ 0
+
+
+ 503
+ 100
+
+
+ 505.5
+ 200
+
+
+ 508
+ 380
+
+
+ 512
+ 500
+
+
+ 515.5
+ 600
+
+
+ 520
+ 720
+
+
+ 530
+ 910
+
+
+ 540
+ 1070
+
+
+ 555
+ 1280
+
+
+ 570
+ 1450
+
+
+ 580
+ 1557
+
+
+ 590
+ 1656
+
+
+ 600
+ 1750
+
+
+ 610
+ 1840
+
+
+
+
+
+ 500
+ 0
+
+
+ 503
+ 100
+
+
+ 506
+ 240
+
+
+ 508.5
+ 420
+
+
+ 514
+ 600
+
+
+ 519
+ 750
+
+
+ 526
+ 910
+
+
+ 533
+ 1050
+
+
+ 554
+ 1400
+
+
+ 569
+ 1610
+
+
+ 580
+ 1739
+
+
+ 590
+ 1851
+
+
+ 600
+ 1956
+
+
+ 610
+ 2055
+
+
+
+
+
+ 500
+ 0
+
+
+ 503
+ 100
+
+
+ 506
+ 240
+
+
+ 508
+ 370
+
+
+ 509
+ 470
+
+
+ 515
+ 700
+
+
+ 520
+ 860
+
+
+ 530
+ 1110
+
+
+ 540
+ 1315
+
+
+ 555
+ 1570
+
+
+ 570
+ 1790
+
+
+ 590
+ 2050
+
+
+ 610
+ 2270
+
+
+
+
+
+ 500
+ 0
+
+
+ 503
+ 100
+
+
+ 506
+ 240
+
+
+ 508
+ 370
+
+
+ 510
+ 550
+
+
+ 515
+ 810
+
+
+ 520
+ 1000
+
+
+ 530
+ 1265
+
+
+ 536
+ 1400
+
+
+ 548
+ 1650
+
+
+ 560
+ 1860
+
+
+ 570
+ 2020
+
+
+ 590
+ 2300
+
+
+ 610
+ 2560
+
+
+
+
+ EUFA.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production
+
+ NGVD-29
+ 497.999
+
+ NAVD-88
+ 0.3527
+
+
+ ft,ft;cfs
+ 2013-06-01T00:00:00-05:00
+ 2016-11-01T11:49:00-05:00
+ true
+
+
+
+
+ 500
+ 0
+
+
+ 615
+ 0
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 3.19995872
+
+
+ 502
+ 4.61376744
+
+
+ 503
+ 5.68629618
+
+
+ 504
+ 6.58643139
+
+
+ 505
+ 7.37754652
+
+
+ 506
+ 8.09168134
+
+
+ 507
+ 8.74770947
+
+
+ 508
+ 9.35785954
+
+
+ 509
+ 9.9305916
+
+
+ 510
+ 10.4720468
+
+
+ 511
+ 10.9868502
+
+
+ 512
+ 11.4785884
+
+
+ 513
+ 11.950109
+
+
+ 514
+ 12.403718
+
+
+ 515
+ 12.8413136
+
+
+ 516
+ 13.2644807
+
+
+ 517
+ 13.674559
+
+
+ 518
+ 14.0726926
+
+
+ 519
+ 14.4598683
+
+
+ 520
+ 14.8369439
+
+
+ 521
+ 15.204671
+
+
+ 522
+ 15.5637121
+
+
+ 523
+ 15.9146551
+
+
+ 528
+ 17.5645045
+
+
+ 533
+ 19.0721627
+
+
+ 538
+ 20.4690733
+
+
+ 543
+ 21.7765592
+
+
+ 548
+ 23.0098697
+
+
+ 553
+ 24.1803572
+
+
+ 558
+ 25.2967438
+
+
+ 563
+ 26.3659025
+
+
+ 564
+ 26.574573
+
+
+ 565
+ 26.7816177
+
+
+ 566
+ 26.9870739
+
+
+ 567
+ 27.1909778
+
+
+ 568
+ 27.3933639
+
+
+ 569
+ 27.5942657
+
+
+ 570
+ 27.7937154
+
+
+ 571
+ 27.991744
+
+
+ 572
+ 28.1883814
+
+
+ 573
+ 28.3836565
+
+
+ 574
+ 28.5775974
+
+
+ 575
+ 28.7702309
+
+
+ 580
+ 29.7146724
+
+
+ 585
+ 30.630007
+
+
+ 590
+ 31.5187706
+
+
+ 595
+ 32.383151
+
+
+ 600
+ 33.2250514
+
+
+ 605
+ 34.0461395
+
+
+ 610
+ 34.8478864
+
+
+ 615
+ 35.6315977
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 13.2242195
+
+
+ 502
+ 21.2185631
+
+
+ 503
+ 26.9364968
+
+
+ 504
+ 31.6373561
+
+
+ 505
+ 35.7249176
+
+
+ 506
+ 39.3905722
+
+
+ 507
+ 42.7430067
+
+
+ 508
+ 45.8509767
+
+
+ 509
+ 48.76125
+
+
+ 510
+ 51.5073484
+
+
+ 511
+ 54.1142715
+
+
+ 512
+ 56.6012528
+
+
+ 513
+ 58.983466
+
+
+ 514
+ 61.273132
+
+
+ 515
+ 63.4802658
+
+
+ 516
+ 65.6131967
+
+
+ 517
+ 67.6789407
+
+
+ 518
+ 69.6834734
+
+
+ 519
+ 71.6319335
+
+
+ 520
+ 73.528779
+
+
+ 521
+ 75.3779065
+
+
+ 522
+ 77.1827456
+
+
+ 523
+ 78.9463341
+
+
+ 528
+ 87.2310774
+
+
+ 533
+ 94.7945044
+
+
+ 538
+ 101.797521
+
+
+ 543
+ 108.348846
+
+
+ 548
+ 114.526022
+
+
+ 553
+ 120.386656
+
+
+ 558
+ 125.974934
+
+
+ 563
+ 131.325631
+
+
+ 564
+ 132.369818
+
+
+ 565
+ 133.405832
+
+
+ 566
+ 134.433863
+
+
+ 567
+ 135.454092
+
+
+ 568
+ 136.466694
+
+
+ 569
+ 137.471837
+
+
+ 570
+ 138.469684
+
+
+ 571
+ 139.460391
+
+
+ 572
+ 140.444111
+
+
+ 573
+ 141.420987
+
+
+ 574
+ 142.391162
+
+
+ 575
+ 143.354772
+
+
+ 580
+ 148.078789
+
+
+ 585
+ 152.65669
+
+
+ 590
+ 157.101248
+
+
+ 595
+ 161.423478
+
+
+ 600
+ 165.632957
+
+
+ 605
+ 169.738074
+
+
+ 610
+ 173.746226
+
+
+ 615
+ 177.663975
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 37.4038529
+
+
+ 503
+ 50.0044719
+
+
+ 504
+ 60.0153832
+
+
+ 505
+ 68.5802101
+
+
+ 506
+ 76.1882157
+
+
+ 507
+ 83.1026066
+
+
+ 508
+ 89.4843127
+
+
+ 509
+ 95.4402495
+
+
+ 510
+ 101.045733
+
+
+ 511
+ 106.35619
+
+
+ 512
+ 111.413815
+
+
+ 513
+ 116.251612
+
+
+ 514
+ 120.895973
+
+
+ 515
+ 125.368398
+
+
+ 516
+ 129.686677
+
+
+ 517
+ 133.865728
+
+
+ 518
+ 137.918208
+
+
+ 519
+ 141.854965
+
+
+ 520
+ 145.685381
+
+
+ 521
+ 149.417634
+
+
+ 522
+ 153.058904
+
+
+ 523
+ 156.61554
+
+
+ 528
+ 173.307306
+
+
+ 533
+ 188.526967
+
+
+ 538
+ 202.606545
+
+
+ 543
+ 215.769338
+
+
+ 548
+ 228.174061
+
+
+ 553
+ 239.93832
+
+
+ 558
+ 251.15213
+
+
+ 563
+ 261.88621
+
+
+ 564
+ 263.980655
+
+
+ 565
+ 266.058612
+
+
+ 566
+ 268.120466
+
+
+ 567
+ 270.166584
+
+
+ 568
+ 272.197322
+
+
+ 569
+ 274.213022
+
+
+ 570
+ 276.214012
+
+
+ 571
+ 278.20061
+
+
+ 572
+ 280.173122
+
+
+ 573
+ 282.131844
+
+
+ 574
+ 284.07706
+
+
+ 575
+ 286.009047
+
+
+ 580
+ 295.47956
+
+
+ 585
+ 304.655814
+
+
+ 590
+ 313.563646
+
+
+ 595
+ 322.225318
+
+
+ 600
+ 330.660173
+
+
+ 605
+ 338.885151
+
+
+ 610
+ 346.915177
+
+
+ 615
+ 354.763492
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 68.8180972
+
+
+ 504
+ 84.9970912
+
+
+ 505
+ 98.5549619
+
+
+ 506
+ 110.461104
+
+
+ 507
+ 121.203261
+
+
+ 508
+ 131.067942
+
+
+ 509
+ 140.240438
+
+
+ 510
+ 148.848767
+
+
+ 511
+ 156.985765
+
+
+ 512
+ 164.721297
+
+
+ 513
+ 172.109502
+
+
+ 514
+ 179.193347
+
+
+ 515
+ 186.007609
+
+
+ 516
+ 192.580907
+
+
+ 517
+ 198.937127
+
+
+ 518
+ 205.096454
+
+
+ 519
+ 211.076125
+
+
+ 520
+ 216.890999
+
+
+ 521
+ 222.553995
+
+
+ 522
+ 228.076425
+
+
+ 523
+ 233.468265
+
+
+ 528
+ 258.747571
+
+
+ 533
+ 281.767955
+
+
+ 538
+ 303.044643
+
+
+ 543
+ 322.922484
+
+
+ 548
+ 341.645731
+
+
+ 553
+ 359.394881
+
+
+ 558
+ 376.307794
+
+
+ 563
+ 392.492587
+
+
+ 564
+ 395.650105
+
+
+ 565
+ 398.782624
+
+
+ 566
+ 401.890726
+
+
+ 567
+ 404.974976
+
+
+ 568
+ 408.035913
+
+
+ 569
+ 411.074058
+
+
+ 570
+ 414.089913
+
+
+ 571
+ 417.083962
+
+
+ 572
+ 420.05667
+
+
+ 573
+ 423.008488
+
+
+ 574
+ 425.93985
+
+
+ 575
+ 428.851176
+
+
+ 580
+ 443.120984
+
+
+ 585
+ 456.945381
+
+
+ 590
+ 470.363642
+
+
+ 595
+ 483.409589
+
+
+ 600
+ 496.112594
+
+
+ 605
+ 508.498359
+
+
+ 610
+ 520.589528
+
+
+ 615
+ 532.406171
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 106.267795
+
+
+ 505
+ 125.515464
+
+
+ 506
+ 142.180939
+
+
+ 507
+ 157.088214
+
+
+ 508
+ 170.698549
+
+
+ 509
+ 183.30107
+
+
+ 510
+ 195.091183
+
+
+ 511
+ 206.208286
+
+
+ 512
+ 216.755957
+
+
+ 513
+ 226.813651
+
+
+ 514
+ 236.443905
+
+
+ 515
+ 245.696983
+
+
+ 516
+ 254.614012
+
+
+ 517
+ 263.229145
+
+
+ 518
+ 271.571115
+
+
+ 519
+ 279.664367
+
+
+ 520
+ 287.529904
+
+
+ 521
+ 295.18593
+
+
+ 522
+ 302.648345
+
+
+ 523
+ 309.931135
+
+
+ 528
+ 344.040327
+
+
+ 533
+ 375.060241
+
+
+ 538
+ 403.703632
+
+
+ 543
+ 430.445188
+
+
+ 548
+ 455.619905
+
+
+ 553
+ 479.474646
+
+
+ 558
+ 502.197545
+
+
+ 563
+ 523.935885
+
+
+ 564
+ 528.176201
+
+
+ 565
+ 532.382745
+
+
+ 566
+ 536.556311
+
+
+ 567
+ 540.697663
+
+
+ 568
+ 544.807535
+
+
+ 569
+ 548.886635
+
+
+ 570
+ 552.935643
+
+
+ 571
+ 556.955216
+
+
+ 572
+ 560.945987
+
+
+ 573
+ 564.908566
+
+
+ 574
+ 568.843542
+
+
+ 575
+ 572.751485
+
+
+ 580
+ 591.904301
+
+
+ 585
+ 610.456501
+
+
+ 590
+ 628.461277
+
+
+ 595
+ 645.964407
+
+
+ 600
+ 663.005621
+
+
+ 605
+ 679.619666
+
+
+ 610
+ 695.837142
+
+
+ 615
+ 711.68516
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 119.493311
+
+
+ 505
+ 149.1715
+
+
+ 506
+ 171.202817
+
+
+ 507
+ 190.705722
+
+
+ 508
+ 208.391316
+
+
+ 509
+ 224.689138
+
+
+ 510
+ 239.882214
+
+
+ 511
+ 254.168733
+
+
+ 512
+ 267.693879
+
+
+ 513
+ 280.567783
+
+
+ 514
+ 292.876337
+
+
+ 515
+ 304.688065
+
+
+ 516
+ 316.058673
+
+
+ 517
+ 327.034177
+
+
+ 518
+ 337.653107
+
+
+ 519
+ 347.948112
+
+
+ 520
+ 357.947143
+
+
+ 521
+ 367.674346
+
+
+ 522
+ 377.150756
+
+
+ 523
+ 386.394825
+
+
+ 528
+ 429.642062
+
+
+ 533
+ 468.917521
+
+
+ 538
+ 505.148475
+
+
+ 543
+ 538.949276
+
+
+ 548
+ 570.751839
+
+
+ 553
+ 600.873533
+
+
+ 558
+ 629.555671
+
+
+ 563
+ 656.986821
+
+
+ 564
+ 662.336735
+
+
+ 565
+ 667.643781
+
+
+ 566
+ 672.908974
+
+
+ 567
+ 678.133287
+
+
+ 568
+ 683.317659
+
+
+ 569
+ 688.462992
+
+
+ 570
+ 693.570154
+
+
+ 571
+ 698.639984
+
+
+ 572
+ 703.673287
+
+
+ 573
+ 708.670843
+
+
+ 574
+ 713.633401
+
+
+ 575
+ 718.561688
+
+
+ 580
+ 742.712757
+
+
+ 585
+ 766.102852
+
+
+ 590
+ 788.79967
+
+
+ 595
+ 810.861431
+
+
+ 600
+ 832.338633
+
+
+ 605
+ 853.275419
+
+
+ 610
+ 873.710639
+
+
+ 615
+ 893.678701
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 119.493311
+
+
+ 505
+ 166.996978
+
+
+ 506
+ 197.235745
+
+
+ 507
+ 221.889728
+
+
+ 508
+ 244.0659
+
+
+ 509
+ 264.388494
+
+
+ 510
+ 283.256753
+
+
+ 511
+ 300.944347
+
+
+ 512
+ 317.648568
+
+
+ 513
+ 333.517203
+
+
+ 514
+ 348.664361
+
+
+ 515
+ 363.180326
+
+
+ 516
+ 377.137987
+
+
+ 517
+ 390.597201
+
+
+ 518
+ 403.607836
+
+
+ 519
+ 416.211963
+
+
+ 520
+ 428.445457
+
+
+ 521
+ 440.339213
+
+
+ 522
+ 451.920053
+
+
+ 523
+ 463.211449
+
+
+ 528
+ 515.975201
+
+
+ 533
+ 563.822639
+
+
+ 538
+ 607.915726
+
+
+ 543
+ 649.0201
+
+
+ 548
+ 687.671907
+
+
+ 553
+ 724.263911
+
+
+ 558
+ 759.094048
+
+
+ 563
+ 792.394683
+
+
+ 564
+ 798.888257
+
+
+ 565
+ 805.329472
+
+
+ 566
+ 811.719577
+
+
+ 567
+ 818.059768
+
+
+ 568
+ 824.351197
+
+
+ 569
+ 830.594972
+
+
+ 570
+ 836.79216
+
+
+ 571
+ 842.943789
+
+
+ 572
+ 849.050849
+
+
+ 573
+ 855.114294
+
+
+ 574
+ 861.135047
+
+
+ 575
+ 867.113995
+
+
+ 580
+ 896.410755
+
+
+ 585
+ 924.779867
+
+
+ 590
+ 952.304239
+
+
+ 595
+ 979.055118
+
+
+ 600
+ 1005.09427
+
+
+ 605
+ 1030.47564
+
+
+ 610
+ 1055.2467
+
+
+ 615
+ 1079.44947
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 119.493311
+
+
+ 505
+ 166.996978
+
+
+ 506
+ 219.523229
+
+
+ 507
+ 250.332289
+
+
+ 508
+ 277.527114
+
+
+ 509
+ 302.285201
+
+
+ 510
+ 325.16363
+
+
+ 511
+ 346.534891
+
+
+ 512
+ 366.662616
+
+
+ 513
+ 385.741517
+
+
+ 514
+ 403.920242
+
+
+ 515
+ 421.315328
+
+
+ 516
+ 438.020148
+
+
+ 517
+ 454.110882
+
+
+ 518
+ 469.650655
+
+
+ 519
+ 484.692461
+
+
+ 520
+ 499.281309
+
+
+ 521
+ 513.45581
+
+
+ 522
+ 527.249384
+
+
+ 523
+ 540.691184
+
+
+ 528
+ 603.425369
+
+
+ 533
+ 660.225261
+
+
+ 538
+ 712.511484
+
+
+ 543
+ 761.214709
+
+
+ 548
+ 806.983924
+
+
+ 553
+ 850.293051
+
+
+ 558
+ 891.500697
+
+
+ 563
+ 930.885982
+
+
+ 564
+ 938.564731
+
+
+ 565
+ 946.181166
+
+
+ 566
+ 953.736779
+
+
+ 567
+ 961.233003
+
+
+ 568
+ 968.671219
+
+
+ 569
+ 976.052752
+
+
+ 570
+ 983.378878
+
+
+ 571
+ 990.650828
+
+
+ 572
+ 997.869784
+
+
+ 573
+ 1005.03689
+
+
+ 574
+ 1012.15325
+
+
+ 575
+ 1019.21992
+
+
+ 580
+ 1053.84271
+
+
+ 585
+ 1087.36364
+
+
+ 590
+ 1119.88164
+
+
+ 595
+ 1151.4817
+
+
+ 600
+ 1182.23743
+
+
+ 605
+ 1212.21308
+
+
+ 610
+ 1241.46517
+
+
+ 615
+ 1270.0437
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 119.493311
+
+
+ 505
+ 166.996978
+
+
+ 506
+ 219.523229
+
+
+ 507
+ 275.543212
+
+
+ 508
+ 308.437932
+
+
+ 509
+ 338.147681
+
+
+ 510
+ 365.450066
+
+
+ 511
+ 390.849904
+
+
+ 512
+ 414.69693
+
+
+ 513
+ 437.245285
+
+
+ 514
+ 458.686533
+
+
+ 515
+ 479.169315
+
+
+ 516
+ 498.811717
+
+
+ 517
+ 517.709402
+
+
+ 518
+ 535.941155
+
+
+ 519
+ 553.572775
+
+
+ 520
+ 570.659893
+
+
+ 521
+ 587.25004
+
+
+ 522
+ 603.384211
+
+
+ 523
+ 619.098056
+
+
+ 528
+ 692.337984
+
+
+ 533
+ 758.538968
+
+
+ 538
+ 819.40884
+
+
+ 543
+ 876.059546
+
+
+ 548
+ 929.263047
+
+
+ 553
+ 979.581182
+
+
+ 558
+ 1027.43797
+
+
+ 563
+ 1073.16273
+
+
+ 564
+ 1082.07585
+
+
+ 565
+ 1090.91615
+
+
+ 566
+ 1099.68538
+
+
+ 567
+ 1108.38524
+
+
+ 568
+ 1117.01734
+
+
+ 569
+ 1125.58324
+
+
+ 570
+ 1134.08444
+
+
+ 571
+ 1142.5224
+
+
+ 572
+ 1150.89848
+
+
+ 573
+ 1159.21405
+
+
+ 574
+ 1167.47039
+
+
+ 575
+ 1175.66875
+
+
+ 580
+ 1215.8316
+
+
+ 585
+ 1254.70952
+
+
+ 590
+ 1292.41845
+
+
+ 595
+ 1329.05791
+
+
+ 600
+ 1364.71404
+
+
+ 605
+ 1399.462
+
+
+ 610
+ 1433.36785
+
+
+ 615
+ 1466.48998
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 119.493311
+
+
+ 505
+ 166.996978
+
+
+ 506
+ 219.523229
+
+
+ 507
+ 276.630885
+
+
+ 508
+ 336.28087
+
+
+ 509
+ 371.599429
+
+
+ 510
+ 403.840869
+
+
+ 511
+ 433.692009
+
+
+ 512
+ 461.616801
+
+
+ 513
+ 487.946085
+
+
+ 514
+ 512.925622
+
+
+ 515
+ 536.743892
+
+
+ 516
+ 559.549209
+
+
+ 517
+ 581.460772
+
+
+ 518
+ 602.576087
+
+
+ 519
+ 622.976125
+
+
+ 520
+ 642.728997
+
+
+ 521
+ 661.892647
+
+
+ 522
+ 680.516853
+
+
+ 523
+ 698.644759
+
+
+ 528
+ 783.014085
+
+
+ 533
+ 859.137717
+
+
+ 538
+ 929.044765
+
+
+ 543
+ 994.047651
+
+
+ 548
+ 1055.05322
+
+
+ 553
+ 1112.71912
+
+
+ 558
+ 1167.54032
+
+
+ 563
+ 1219.90039
+
+
+ 564
+ 1230.10499
+
+
+ 565
+ 1240.22562
+
+
+ 566
+ 1250.26433
+
+
+ 567
+ 1260.22308
+
+
+ 568
+ 1270.10375
+
+
+ 569
+ 1279.90814
+
+
+ 570
+ 1289.63799
+
+
+ 571
+ 1299.29499
+
+
+ 572
+ 1308.88073
+
+
+ 573
+ 1318.39679
+
+
+ 574
+ 1327.84464
+
+
+ 575
+ 1337.22575
+
+
+ 580
+ 1383.17724
+
+
+ 585
+ 1427.65046
+
+
+ 590
+ 1470.77952
+
+
+ 595
+ 1512.67939
+
+
+ 600
+ 1553.44955
+
+
+ 605
+ 1593.17672
+
+
+ 610
+ 1631.93708
+
+
+ 615
+ 1669.79794
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 119.493311
+
+
+ 505
+ 166.996978
+
+
+ 506
+ 219.523229
+
+
+ 507
+ 276.630885
+
+
+ 508
+ 337.978121
+
+
+ 509
+ 402.080602
+
+
+ 510
+ 439.910183
+
+
+ 511
+ 474.734798
+
+
+ 512
+ 507.173823
+
+
+ 513
+ 537.659228
+
+
+ 514
+ 566.506491
+
+
+ 515
+ 593.954344
+
+
+ 516
+ 620.188618
+
+
+ 517
+ 645.357328
+
+
+ 518
+ 669.580645
+
+
+ 519
+ 692.957718
+
+
+ 520
+ 715.57149
+
+
+ 521
+ 737.49218
+
+
+ 522
+ 758.779859
+
+
+ 523
+ 779.486391
+
+
+ 528
+ 875.705331
+
+
+ 533
+ 962.35161
+
+
+ 538
+ 1041.8164
+
+
+ 543
+ 1115.63534
+
+
+ 548
+ 1184.86413
+
+
+ 553
+ 1250.26549
+
+
+ 558
+ 1312.41175
+
+
+ 563
+ 1371.74538
+
+
+ 564
+ 1383.30674
+
+
+ 565
+ 1394.77228
+
+
+ 566
+ 1406.14432
+
+
+ 567
+ 1417.42514
+
+
+ 568
+ 1428.61688
+
+
+ 569
+ 1439.72162
+
+
+ 570
+ 1450.74136
+
+
+ 571
+ 1461.67803
+
+
+ 572
+ 1472.53347
+
+
+ 573
+ 1483.30947
+
+
+ 574
+ 1494.00774
+
+
+ 575
+ 1504.62995
+
+
+ 580
+ 1556.65413
+
+
+ 585
+ 1606.99498
+
+
+ 590
+ 1655.80605
+
+
+ 595
+ 1703.21885
+
+
+ 600
+ 1749.3471
+
+
+ 605
+ 1794.28985
+
+
+ 610
+ 1838.13407
+
+
+ 615
+ 1880.95658
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 119.493311
+
+
+ 505
+ 166.996978
+
+
+ 506
+ 219.523229
+
+
+ 507
+ 276.630885
+
+
+ 508
+ 337.978121
+
+
+ 509
+ 403.289923
+
+
+ 510
+ 472.338783
+
+
+ 511
+ 513.493061
+
+
+ 512
+ 550.982116
+
+
+ 513
+ 586.078033
+
+
+ 514
+ 619.187879
+
+
+ 515
+ 650.614938
+
+
+ 516
+ 680.592364
+
+
+ 517
+ 709.303978
+
+
+ 518
+ 736.897756
+
+
+ 519
+ 763.494905
+
+
+ 520
+ 789.196198
+
+
+ 521
+ 814.086486
+
+
+ 522
+ 838.238018
+
+
+ 523
+ 861.712913
+
+
+ 528
+ 970.608049
+
+
+ 533
+ 1068.4619
+
+
+ 538
+ 1158.07671
+
+
+ 543
+ 1241.2383
+
+
+ 548
+ 1319.16767
+
+
+ 553
+ 1392.74341
+
+
+ 558
+ 1462.62266
+
+
+ 563
+ 1529.31222
+
+
+ 564
+ 1542.30413
+
+
+ 565
+ 1555.18752
+
+
+ 566
+ 1567.96504
+
+
+ 567
+ 1580.63929
+
+
+ 568
+ 1593.2127
+
+
+ 569
+ 1605.68767
+
+
+ 570
+ 1618.06646
+
+
+ 571
+ 1630.35126
+
+
+ 572
+ 1642.54418
+
+
+ 573
+ 1654.64726
+
+
+ 574
+ 1666.66245
+
+
+ 575
+ 1678.59164
+
+
+ 580
+ 1737.00914
+
+
+ 585
+ 1793.5249
+
+
+ 590
+ 1848.3134
+
+
+ 595
+ 1901.52393
+
+
+ 600
+ 1953.28546
+
+
+ 605
+ 2003.71029
+
+
+ 610
+ 2052.89693
+
+
+ 615
+ 2100.93232
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 119.493311
+
+
+ 505
+ 166.996978
+
+
+ 506
+ 219.523229
+
+
+ 507
+ 276.630885
+
+
+ 508
+ 337.978121
+
+
+ 509
+ 403.289923
+
+
+ 510
+ 472.338783
+
+
+ 511
+ 544.932404
+
+
+ 512
+ 592.486536
+
+
+ 513
+ 632.74804
+
+
+ 514
+ 670.596651
+
+
+ 515
+ 706.420311
+
+
+ 516
+ 740.512959
+
+
+ 517
+ 773.103634
+
+
+ 518
+ 804.374922
+
+
+ 519
+ 834.475166
+
+
+ 520
+ 863.526832
+
+
+ 521
+ 891.632422
+
+
+ 522
+ 918.878753
+
+
+ 523
+ 945.340124
+
+
+ 528
+ 1067.85621
+
+
+ 533
+ 1177.69513
+
+
+ 538
+ 1278.1294
+
+
+ 543
+ 1371.22707
+
+
+ 548
+ 1458.39385
+
+
+ 553
+ 1540.63674
+
+
+ 558
+ 1618.70642
+
+
+ 563
+ 1693.18027
+
+
+ 564
+ 1707.68534
+
+
+ 565
+ 1722.06823
+
+
+ 566
+ 1736.33199
+
+
+ 567
+ 1750.47953
+
+
+ 568
+ 1764.51363
+
+
+ 569
+ 1778.43699
+
+
+ 570
+ 1792.2522
+
+
+ 571
+ 1805.96172
+
+
+ 572
+ 1819.56794
+
+
+ 573
+ 1833.07318
+
+
+ 574
+ 1846.47964
+
+
+ 575
+ 1859.78947
+
+
+ 580
+ 1924.95865
+
+
+ 585
+ 1987.99264
+
+
+ 590
+ 2049.0885
+
+
+ 595
+ 2108.41471
+
+
+ 600
+ 2166.11669
+
+
+ 605
+ 2222.32096
+
+
+ 610
+ 2277.13842
+
+
+ 615
+ 2330.66693
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 119.493311
+
+
+ 505
+ 166.996978
+
+
+ 506
+ 219.523229
+
+
+ 507
+ 276.630885
+
+
+ 508
+ 337.978121
+
+
+ 509
+ 403.289923
+
+
+ 510
+ 472.338783
+
+
+ 511
+ 544.932404
+
+
+ 512
+ 620.905455
+
+
+ 513
+ 677.032678
+
+
+ 514
+ 720.199622
+
+
+ 515
+ 760.921641
+
+
+ 516
+ 799.57238
+
+
+ 517
+ 836.439023
+
+
+ 518
+ 871.74795
+
+
+ 519
+ 905.681366
+
+
+ 520
+ 938.388504
+
+
+ 521
+ 969.993419
+
+
+ 522
+ 1000.60056
+
+
+ 523
+ 1030.29885
+
+
+ 528
+ 1167.51316
+
+
+ 533
+ 1290.21634
+
+
+ 538
+ 1402.22304
+
+
+ 543
+ 1505.92187
+
+
+ 548
+ 1602.92605
+
+
+ 553
+ 1694.38578
+
+
+ 558
+ 1781.15536
+
+
+ 563
+ 1863.88993
+
+
+ 564
+ 1879.99997
+
+
+ 565
+ 1895.97314
+
+
+ 566
+ 1911.81286
+
+
+ 567
+ 1927.52241
+
+
+ 568
+ 1943.10496
+
+
+ 569
+ 1958.56354
+
+
+ 570
+ 1973.90106
+
+
+ 571
+ 1989.12032
+
+
+ 572
+ 2004.22401
+
+
+ 573
+ 2019.21473
+
+
+ 574
+ 2034.09498
+
+
+ 575
+ 2048.86716
+
+
+ 580
+ 2121.18549
+
+
+ 585
+ 2191.11823
+
+
+ 590
+ 2258.88697
+
+
+ 595
+ 2324.68097
+
+
+ 600
+ 2388.6634
+
+
+ 605
+ 2450.97615
+
+
+ 610
+ 2511.74348
+
+
+ 615
+ 2571.07498
+
+
+
+
+
+ 500
+ 0
+
+
+ 501
+ 14.9366638
+
+
+ 502
+ 42.2472651
+
+
+ 503
+ 77.6131819
+
+
+ 504
+ 119.493311
+
+
+ 505
+ 166.996978
+
+
+ 506
+ 219.523229
+
+
+ 507
+ 276.630885
+
+
+ 508
+ 337.978121
+
+
+ 509
+ 403.289923
+
+
+ 510
+ 472.338783
+
+
+ 511
+ 544.932404
+
+
+ 512
+ 620.905455
+
+
+ 513
+ 700.113795
+
+
+ 514
+ 762.956349
+
+
+ 515
+ 802.595922
+
+
+ 516
+ 840.3678
+
+
+ 517
+ 876.51347
+
+
+ 518
+ 911.226474
+
+
+ 519
+ 944.664761
+
+
+ 520
+ 976.959229
+
+
+ 521
+ 1008.2198
+
+
+ 522
+ 1038.53983
+
+
+ 523
+ 1067.99944
+
+
+ 528
+ 1204.53806
+
+
+ 533
+ 1327.1025
+
+
+ 538
+ 1439.26723
+
+
+ 543
+ 1543.30143
+
+
+ 548
+ 1640.75239
+
+
+ 553
+ 1732.73123
+
+
+ 558
+ 1820.06776
+
+
+ 563
+ 1903.40111
+
+
+ 564
+ 1919.63371
+
+
+ 565
+ 1935.7302
+
+
+ 566
+ 1951.69394
+
+
+ 567
+ 1967.52816
+
+
+ 568
+ 1983.23597
+
+
+ 569
+ 1998.82033
+
+
+ 570
+ 2014.28413
+
+
+ 571
+ 2029.63011
+
+
+ 572
+ 2044.86092
+
+
+ 573
+ 2059.97913
+
+
+ 574
+ 2074.98719
+
+
+ 575
+ 2089.88748
+
+
+ 580
+ 2162.84969
+
+
+ 585
+ 2233.42963
+
+
+ 590
+ 2301.84644
+
+
+ 595
+ 2368.2876
+
+
+ 600
+ 2432.91497
+
+
+ 605
+ 2495.86947
+
+
+ 610
+ 2557.27462
+
+
+ 615
+ 2617.23951
+
+
+
+
diff --git a/cda-etl/data/sample-data/SWT/Ratings/EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production.xml b/cda-etl/data/sample-data/SWT/Ratings/EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production.xml
new file mode 100644
index 000000000..304efebf5
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Ratings/EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production.xml
@@ -0,0 +1,6578 @@
+
+
+
+ Opening-Spillway_Gates,Elev;Flow-Spillway_Gates
+ Standard
+
+
+ Opening-Spillway_Gates
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Elev
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Flow-Spillway_Gates
+
+
+
+ EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production
+ Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard
+ EUFA
+ Production
+
+ PREVIOUS
+ NEAREST
+ PREVIOUS
+ true
+ false
+ false
+ false
+
+ 4444444444
+ 4444444444
+
+ 4444444444
+ Eufaula Lake Spillway (Tainter) Gate Discharge Production Rating
+
+
+ EUFA.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production
+
+ NGVD-29
+ 497.999
+
+ NAVD-88
+ 0.3527
+
+
+ ft,ft;cfs
+ 2012-02-21T00:00:00-06:00
+ 2012-11-05T08:41:41-06:00
+ true
+
+
+
+
+ 565
+ 0
+
+
+ 605.69
+ 0
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 118
+
+
+ 567
+ 154
+
+
+ 568
+ 182
+
+
+ 569
+ 207
+
+
+ 570
+ 229
+
+
+ 571
+ 249
+
+
+ 572
+ 268
+
+
+ 573
+ 285
+
+
+ 574
+ 302
+
+
+ 575
+ 317
+
+
+ 576
+ 332
+
+
+ 577
+ 346
+
+
+ 578
+ 360
+
+
+ 579
+ 373
+
+
+ 580
+ 386
+
+
+ 581
+ 398
+
+
+ 582
+ 410
+
+
+ 583
+ 421
+
+
+ 584
+ 433
+
+
+ 585
+ 444
+
+
+ 586
+ 454
+
+
+ 587
+ 465
+
+
+ 588
+ 475
+
+
+ 589
+ 485
+
+
+ 590
+ 495
+
+
+ 591
+ 504
+
+
+ 592
+ 514
+
+
+ 593
+ 523
+
+
+ 594
+ 532
+
+
+ 595
+ 541
+
+
+ 596
+ 550
+
+
+ 597
+ 559
+
+
+ 597.37
+ 562
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 290
+
+
+ 568
+ 350
+
+
+ 569
+ 400
+
+
+ 570
+ 450
+
+
+ 571
+ 490
+
+
+ 572
+ 530
+
+
+ 573
+ 560
+
+
+ 574
+ 600
+
+
+ 575
+ 630
+
+
+ 576
+ 660
+
+
+ 577
+ 690
+
+
+ 578
+ 710
+
+
+ 579
+ 740
+
+
+ 580
+ 770
+
+
+ 581
+ 790
+
+
+ 582
+ 820
+
+
+ 583
+ 840
+
+
+ 584
+ 860
+
+
+ 585
+ 880
+
+
+ 586
+ 910
+
+
+ 587
+ 930
+
+
+ 588
+ 950
+
+
+ 589
+ 970
+
+
+ 590
+ 990
+
+
+ 591
+ 1010
+
+
+ 592
+ 1030
+
+
+ 593
+ 1040
+
+
+ 594
+ 1060
+
+
+ 595
+ 1080
+
+
+ 596
+ 1100
+
+
+ 597
+ 1120
+
+
+ 597.74
+ 1130
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 500
+
+
+ 569
+ 590
+
+
+ 570
+ 660
+
+
+ 571
+ 720
+
+
+ 572
+ 780
+
+
+ 573
+ 830
+
+
+ 574
+ 880
+
+
+ 575
+ 930
+
+
+ 576
+ 980
+
+
+ 577
+ 1020
+
+
+ 578
+ 1060
+
+
+ 579
+ 1110
+
+
+ 580
+ 1140
+
+
+ 581
+ 1180
+
+
+ 582
+ 1220
+
+
+ 583
+ 1250
+
+
+ 584
+ 1290
+
+
+ 585
+ 1320
+
+
+ 586
+ 1360
+
+
+ 587
+ 1390
+
+
+ 588
+ 1420
+
+
+ 589
+ 1450
+
+
+ 590
+ 1480
+
+
+ 591
+ 1510
+
+
+ 592
+ 1540
+
+
+ 593
+ 1570
+
+
+ 594
+ 1590
+
+
+ 595
+ 1620
+
+
+ 596
+ 1650
+
+
+ 597
+ 1670
+
+
+ 598
+ 1700
+
+
+ 598.09
+ 1700
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 640
+
+
+ 569
+ 760
+
+
+ 570
+ 850
+
+
+ 571
+ 940
+
+
+ 572
+ 1020
+
+
+ 573
+ 1100
+
+
+ 574
+ 1170
+
+
+ 575
+ 1230
+
+
+ 576
+ 1300
+
+
+ 577
+ 1350
+
+
+ 578
+ 1410
+
+
+ 579
+ 1470
+
+
+ 580
+ 1520
+
+
+ 581
+ 1570
+
+
+ 582
+ 1620
+
+
+ 583
+ 1670
+
+
+ 584
+ 1720
+
+
+ 585
+ 1760
+
+
+ 586
+ 1800
+
+
+ 587
+ 1850
+
+
+ 588
+ 1890
+
+
+ 589
+ 1930
+
+
+ 590
+ 1970
+
+
+ 591
+ 2010
+
+
+ 592
+ 2050
+
+
+ 593
+ 2090
+
+
+ 594
+ 2130
+
+
+ 595
+ 2160
+
+
+ 596
+ 2200
+
+
+ 597
+ 2230
+
+
+ 598
+ 2270
+
+
+ 598.44
+ 2290
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 910
+
+
+ 570
+ 1040
+
+
+ 571
+ 1150
+
+
+ 572
+ 1260
+
+
+ 573
+ 1350
+
+
+ 574
+ 1440
+
+
+ 575
+ 1530
+
+
+ 576
+ 1610
+
+
+ 577
+ 1680
+
+
+ 578
+ 1750
+
+
+ 579
+ 1820
+
+
+ 580
+ 1890
+
+
+ 581
+ 1960
+
+
+ 582
+ 2020
+
+
+ 583
+ 2080
+
+
+ 584
+ 2140
+
+
+ 585
+ 2190
+
+
+ 586
+ 2250
+
+
+ 587
+ 2310
+
+
+ 588
+ 2360
+
+
+ 589
+ 2410
+
+
+ 590
+ 2460
+
+
+ 591
+ 2510
+
+
+ 592
+ 2560
+
+
+ 593
+ 2610
+
+
+ 594
+ 2660
+
+
+ 595
+ 2700
+
+
+ 596
+ 2750
+
+
+ 597
+ 2790
+
+
+ 598
+ 2840
+
+
+ 598.78
+ 2870
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1220
+
+
+ 571
+ 1360
+
+
+ 572
+ 1490
+
+
+ 573
+ 1600
+
+
+ 574
+ 1710
+
+
+ 575
+ 1810
+
+
+ 576
+ 1910
+
+
+ 577
+ 2000
+
+
+ 578
+ 2090
+
+
+ 579
+ 2180
+
+
+ 580
+ 2260
+
+
+ 581
+ 2340
+
+
+ 582
+ 2410
+
+
+ 583
+ 2490
+
+
+ 584
+ 2560
+
+
+ 585
+ 2630
+
+
+ 586
+ 2700
+
+
+ 587
+ 2760
+
+
+ 588
+ 2830
+
+
+ 589
+ 2890
+
+
+ 590
+ 2950
+
+
+ 591
+ 3010
+
+
+ 592
+ 3070
+
+
+ 593
+ 3130
+
+
+ 594
+ 3190
+
+
+ 595
+ 3250
+
+
+ 596
+ 3300
+
+
+ 597
+ 3360
+
+
+ 598
+ 3410
+
+
+ 599
+ 3460
+
+
+ 599.12
+ 3470
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1380
+
+
+ 571
+ 1550
+
+
+ 572
+ 1700
+
+
+ 573
+ 1840
+
+
+ 574
+ 1970
+
+
+ 575
+ 2090
+
+
+ 576
+ 2210
+
+
+ 577
+ 2320
+
+
+ 578
+ 2420
+
+
+ 579
+ 2530
+
+
+ 580
+ 2620
+
+
+ 581
+ 2720
+
+
+ 582
+ 2810
+
+
+ 583
+ 2890
+
+
+ 584
+ 2980
+
+
+ 585
+ 3060
+
+
+ 586
+ 3140
+
+
+ 587
+ 3220
+
+
+ 588
+ 3290
+
+
+ 589
+ 3370
+
+
+ 590
+ 3440
+
+
+ 591
+ 3510
+
+
+ 592
+ 3580
+
+
+ 593
+ 3650
+
+
+ 594
+ 3720
+
+
+ 595
+ 3790
+
+
+ 596
+ 3850
+
+
+ 597
+ 3920
+
+
+ 598
+ 3980
+
+
+ 599
+ 4040
+
+
+ 599.45
+ 4070
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1730
+
+
+ 572
+ 1910
+
+
+ 573
+ 2070
+
+
+ 574
+ 2230
+
+
+ 575
+ 2370
+
+
+ 576
+ 2500
+
+
+ 577
+ 2630
+
+
+ 578
+ 2750
+
+
+ 579
+ 2870
+
+
+ 580
+ 2980
+
+
+ 581
+ 3090
+
+
+ 582
+ 3190
+
+
+ 583
+ 3290
+
+
+ 584
+ 3390
+
+
+ 585
+ 3490
+
+
+ 586
+ 3580
+
+
+ 587
+ 3670
+
+
+ 588
+ 3760
+
+
+ 589
+ 3840
+
+
+ 590
+ 3930
+
+
+ 591
+ 4010
+
+
+ 592
+ 4090
+
+
+ 593
+ 4170
+
+
+ 594
+ 4250
+
+
+ 595
+ 4320
+
+
+ 596
+ 4400
+
+
+ 597
+ 4470
+
+
+ 598
+ 4550
+
+
+ 599
+ 4620
+
+
+ 599.77
+ 4670
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1890
+
+
+ 572
+ 2100
+
+
+ 573
+ 2290
+
+
+ 574
+ 2470
+
+
+ 575
+ 2630
+
+
+ 576
+ 2790
+
+
+ 577
+ 2930
+
+
+ 578
+ 3070
+
+
+ 579
+ 3210
+
+
+ 580
+ 3330
+
+
+ 581
+ 3460
+
+
+ 582
+ 3570
+
+
+ 583
+ 3690
+
+
+ 584
+ 3800
+
+
+ 585
+ 3910
+
+
+ 586
+ 4010
+
+
+ 587
+ 4120
+
+
+ 588
+ 4220
+
+
+ 589
+ 4320
+
+
+ 590
+ 4410
+
+
+ 591
+ 4510
+
+
+ 592
+ 4600
+
+
+ 593
+ 4690
+
+
+ 594
+ 4780
+
+
+ 595
+ 4860
+
+
+ 596
+ 4950
+
+
+ 597
+ 5030
+
+
+ 598
+ 5110
+
+
+ 599
+ 5190
+
+
+ 600
+ 5270
+
+
+ 600.08
+ 5280
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2290
+
+
+ 573
+ 2510
+
+
+ 574
+ 2710
+
+
+ 575
+ 2900
+
+
+ 576
+ 3070
+
+
+ 577
+ 3240
+
+
+ 578
+ 3390
+
+
+ 579
+ 3540
+
+
+ 580
+ 3690
+
+
+ 581
+ 3830
+
+
+ 582
+ 3960
+
+
+ 583
+ 4090
+
+
+ 584
+ 4220
+
+
+ 585
+ 4340
+
+
+ 586
+ 4460
+
+
+ 587
+ 4570
+
+
+ 588
+ 4690
+
+
+ 589
+ 4800
+
+
+ 590
+ 4900
+
+
+ 591
+ 5010
+
+
+ 592
+ 5110
+
+
+ 593
+ 5210
+
+
+ 594
+ 5310
+
+
+ 595
+ 5410
+
+
+ 596
+ 5500
+
+
+ 597
+ 5600
+
+
+ 598
+ 5690
+
+
+ 599
+ 5780
+
+
+ 600
+ 5870
+
+
+ 600.39
+ 5910
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 2710
+
+
+ 574
+ 2940
+
+
+ 575
+ 3150
+
+
+ 576
+ 3340
+
+
+ 577
+ 3530
+
+
+ 578
+ 3700
+
+
+ 579
+ 3870
+
+
+ 580
+ 4030
+
+
+ 581
+ 4190
+
+
+ 582
+ 4340
+
+
+ 583
+ 4480
+
+
+ 584
+ 4620
+
+
+ 585
+ 4760
+
+
+ 586
+ 4890
+
+
+ 587
+ 5020
+
+
+ 588
+ 5140
+
+
+ 589
+ 5270
+
+
+ 590
+ 5380
+
+
+ 591
+ 5500
+
+
+ 592
+ 5620
+
+
+ 593
+ 5730
+
+
+ 594
+ 5840
+
+
+ 595
+ 5950
+
+
+ 596
+ 6050
+
+
+ 597
+ 6160
+
+
+ 598
+ 6260
+
+
+ 599
+ 6360
+
+
+ 600
+ 6460
+
+
+ 600.69
+ 6530
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 2900
+
+
+ 574
+ 3160
+
+
+ 575
+ 3390
+
+
+ 576
+ 3610
+
+
+ 577
+ 3810
+
+
+ 578
+ 4010
+
+
+ 579
+ 4190
+
+
+ 580
+ 4370
+
+
+ 581
+ 4540
+
+
+ 582
+ 4710
+
+
+ 583
+ 4870
+
+
+ 584
+ 5020
+
+
+ 585
+ 5170
+
+
+ 586
+ 5320
+
+
+ 587
+ 5460
+
+
+ 588
+ 5600
+
+
+ 589
+ 5730
+
+
+ 590
+ 5870
+
+
+ 591
+ 5990
+
+
+ 592
+ 6120
+
+
+ 593
+ 6240
+
+
+ 594
+ 6360
+
+
+ 595
+ 6480
+
+
+ 596
+ 6600
+
+
+ 597
+ 6720
+
+
+ 598
+ 6830
+
+
+ 599
+ 6940
+
+
+ 600
+ 7050
+
+
+ 600.98
+ 7150
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3360
+
+
+ 575
+ 3620
+
+
+ 576
+ 3860
+
+
+ 577
+ 4090
+
+
+ 578
+ 4310
+
+
+ 579
+ 4510
+
+
+ 580
+ 4710
+
+
+ 581
+ 4900
+
+
+ 582
+ 5080
+
+
+ 583
+ 5250
+
+
+ 584
+ 5420
+
+
+ 585
+ 5580
+
+
+ 586
+ 5740
+
+
+ 587
+ 5900
+
+
+ 588
+ 6050
+
+
+ 589
+ 6200
+
+
+ 590
+ 6340
+
+
+ 591
+ 6480
+
+
+ 592
+ 6620
+
+
+ 593
+ 6760
+
+
+ 594
+ 6890
+
+
+ 595
+ 7020
+
+
+ 596
+ 7150
+
+
+ 597
+ 7270
+
+
+ 598
+ 7390
+
+
+ 599
+ 7520
+
+
+ 600
+ 7640
+
+
+ 601
+ 7750
+
+
+ 601.27
+ 7780
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3560
+
+
+ 575
+ 3850
+
+
+ 576
+ 4110
+
+
+ 577
+ 4360
+
+
+ 578
+ 4600
+
+
+ 579
+ 4820
+
+
+ 580
+ 5030
+
+
+ 581
+ 5240
+
+
+ 582
+ 5440
+
+
+ 583
+ 5630
+
+
+ 584
+ 5810
+
+
+ 585
+ 5990
+
+
+ 586
+ 6170
+
+
+ 587
+ 6340
+
+
+ 588
+ 6500
+
+
+ 589
+ 6660
+
+
+ 590
+ 6820
+
+
+ 591
+ 6970
+
+
+ 592
+ 7120
+
+
+ 593
+ 7270
+
+
+ 594
+ 7410
+
+
+ 595
+ 7550
+
+
+ 596
+ 7690
+
+
+ 597
+ 7830
+
+
+ 598
+ 7960
+
+
+ 599
+ 8090
+
+
+ 600
+ 8220
+
+
+ 601
+ 8350
+
+
+ 601.55
+ 8420
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4260
+
+
+ 576
+ 4580
+
+
+ 577
+ 4870
+
+
+ 578
+ 5150
+
+
+ 579
+ 5420
+
+
+ 580
+ 5670
+
+
+ 581
+ 5910
+
+
+ 582
+ 6140
+
+
+ 583
+ 6370
+
+
+ 584
+ 6580
+
+
+ 585
+ 6790
+
+
+ 586
+ 7000
+
+
+ 587
+ 7190
+
+
+ 588
+ 7390
+
+
+ 589
+ 7570
+
+
+ 590
+ 7760
+
+
+ 591
+ 7930
+
+
+ 592
+ 8110
+
+
+ 593
+ 8280
+
+
+ 594
+ 8450
+
+
+ 595
+ 8610
+
+
+ 596
+ 8770
+
+
+ 597
+ 8930
+
+
+ 598
+ 9090
+
+
+ 599
+ 9240
+
+
+ 600
+ 9390
+
+
+ 601
+ 9540
+
+
+ 602
+ 9680
+
+
+ 602.09
+ 9690
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5360
+
+
+ 578
+ 5680
+
+
+ 579
+ 5990
+
+
+ 580
+ 6280
+
+
+ 581
+ 6560
+
+
+ 582
+ 6830
+
+
+ 583
+ 7090
+
+
+ 584
+ 7340
+
+
+ 585
+ 7580
+
+
+ 586
+ 7810
+
+
+ 587
+ 8040
+
+
+ 588
+ 8260
+
+
+ 589
+ 8470
+
+
+ 590
+ 8680
+
+
+ 591
+ 8890
+
+
+ 592
+ 9090
+
+
+ 593
+ 9280
+
+
+ 594
+ 9470
+
+
+ 595
+ 9660
+
+
+ 596
+ 9850
+
+
+ 597
+ 10030
+
+
+ 598
+ 10200
+
+
+ 599
+ 10380
+
+
+ 600
+ 10550
+
+
+ 601
+ 10720
+
+
+ 602
+ 10890
+
+
+ 602.6
+ 10980
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6180
+
+
+ 579
+ 6530
+
+
+ 580
+ 6870
+
+
+ 581
+ 7190
+
+
+ 582
+ 7500
+
+
+ 583
+ 7790
+
+
+ 584
+ 8080
+
+
+ 585
+ 8350
+
+
+ 586
+ 8620
+
+
+ 587
+ 8870
+
+
+ 588
+ 9120
+
+
+ 589
+ 9370
+
+
+ 590
+ 9600
+
+
+ 591
+ 9840
+
+
+ 592
+ 10060
+
+
+ 593
+ 10280
+
+
+ 594
+ 10500
+
+
+ 595
+ 10710
+
+
+ 596
+ 10920
+
+
+ 597
+ 11130
+
+
+ 598
+ 11330
+
+
+ 599
+ 11520
+
+
+ 600
+ 11720
+
+
+ 601
+ 11910
+
+
+ 602
+ 12100
+
+
+ 603
+ 12280
+
+
+ 603.08
+ 12300
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7050
+
+
+ 580
+ 7430
+
+
+ 581
+ 7790
+
+
+ 582
+ 8140
+
+
+ 583
+ 8470
+
+
+ 584
+ 8790
+
+
+ 585
+ 9100
+
+
+ 586
+ 9400
+
+
+ 587
+ 9690
+
+
+ 588
+ 9970
+
+
+ 589
+ 10250
+
+
+ 590
+ 10510
+
+
+ 591
+ 10770
+
+
+ 592
+ 11030
+
+
+ 593
+ 11280
+
+
+ 594
+ 11520
+
+
+ 595
+ 11760
+
+
+ 596
+ 11990
+
+
+ 597
+ 12220
+
+
+ 598
+ 12440
+
+
+ 599
+ 12660
+
+
+ 600
+ 12880
+
+
+ 601
+ 13090
+
+
+ 602
+ 13300
+
+
+ 603
+ 13510
+
+
+ 603.54
+ 13620
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 7960
+
+
+ 581
+ 8370
+
+
+ 582
+ 8760
+
+
+ 583
+ 9140
+
+
+ 584
+ 9490
+
+
+ 585
+ 9840
+
+
+ 586
+ 10180
+
+
+ 587
+ 10500
+
+
+ 588
+ 10810
+
+
+ 589
+ 11120
+
+
+ 590
+ 11420
+
+
+ 591
+ 11710
+
+
+ 592
+ 11990
+
+
+ 593
+ 12260
+
+
+ 594
+ 12530
+
+
+ 595
+ 12800
+
+
+ 596
+ 13060
+
+
+ 597
+ 13310
+
+
+ 598
+ 13560
+
+
+ 599
+ 13810
+
+
+ 600
+ 14050
+
+
+ 601
+ 14280
+
+
+ 602
+ 14510
+
+
+ 603
+ 14740
+
+
+ 603.98
+ 14960
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 8930
+
+
+ 582
+ 9360
+
+
+ 583
+ 9780
+
+
+ 584
+ 10180
+
+
+ 585
+ 10570
+
+
+ 586
+ 10940
+
+
+ 587
+ 11300
+
+
+ 588
+ 11650
+
+
+ 589
+ 11990
+
+
+ 590
+ 12310
+
+
+ 591
+ 12640
+
+
+ 592
+ 12950
+
+
+ 593
+ 13250
+
+
+ 594
+ 13550
+
+
+ 595
+ 13840
+
+
+ 596
+ 14130
+
+
+ 597
+ 14410
+
+
+ 598
+ 14680
+
+
+ 599
+ 14950
+
+
+ 600
+ 15220
+
+
+ 601
+ 15480
+
+
+ 602
+ 15740
+
+
+ 603
+ 15990
+
+
+ 604
+ 16240
+
+
+ 604.38
+ 16330
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 9940
+
+
+ 583
+ 10400
+
+
+ 584
+ 10840
+
+
+ 585
+ 11270
+
+
+ 586
+ 11680
+
+
+ 587
+ 12080
+
+
+ 588
+ 12460
+
+
+ 589
+ 12840
+
+
+ 590
+ 13200
+
+
+ 591
+ 13550
+
+
+ 592
+ 13900
+
+
+ 593
+ 14230
+
+
+ 594
+ 14560
+
+
+ 595
+ 14880
+
+
+ 596
+ 15190
+
+
+ 597
+ 15500
+
+
+ 598
+ 15800
+
+
+ 599
+ 16100
+
+
+ 600
+ 16390
+
+
+ 601
+ 16670
+
+
+ 602
+ 16950
+
+
+ 603
+ 17230
+
+
+ 604
+ 17500
+
+
+ 604.76
+ 17710
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 10960
+
+
+ 584
+ 11450
+
+
+ 585
+ 11920
+
+
+ 586
+ 12370
+
+
+ 587
+ 12810
+
+
+ 588
+ 13230
+
+
+ 589
+ 13640
+
+
+ 590
+ 14030
+
+
+ 591
+ 14420
+
+
+ 592
+ 14790
+
+
+ 593
+ 15160
+
+
+ 594
+ 15520
+
+
+ 595
+ 15870
+
+
+ 596
+ 16210
+
+
+ 597
+ 16540
+
+
+ 598
+ 16870
+
+
+ 599
+ 17190
+
+
+ 600
+ 17510
+
+
+ 601
+ 17820
+
+
+ 602
+ 18120
+
+
+ 603
+ 18420
+
+
+ 604
+ 18720
+
+
+ 605
+ 19010
+
+
+ 605.11
+ 19040
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12060
+
+
+ 585
+ 12580
+
+
+ 586
+ 13080
+
+
+ 587
+ 13550
+
+
+ 588
+ 14010
+
+
+ 589
+ 14460
+
+
+ 590
+ 14890
+
+
+ 591
+ 15310
+
+
+ 592
+ 15720
+
+
+ 593
+ 16120
+
+
+ 594
+ 16510
+
+
+ 595
+ 16890
+
+
+ 596
+ 17260
+
+
+ 597
+ 17620
+
+
+ 598
+ 17980
+
+
+ 599
+ 18330
+
+
+ 600
+ 18670
+
+
+ 601
+ 19010
+
+
+ 602
+ 19340
+
+
+ 603
+ 19670
+
+
+ 604
+ 19990
+
+
+ 605
+ 20300
+
+
+ 605.44
+ 20440
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 13750
+
+
+ 587
+ 14270
+
+
+ 588
+ 14780
+
+
+ 589
+ 15260
+
+
+ 590
+ 15730
+
+
+ 591
+ 16190
+
+
+ 592
+ 16630
+
+
+ 593
+ 17070
+
+
+ 594
+ 17490
+
+
+ 595
+ 17900
+
+
+ 596
+ 18300
+
+
+ 597
+ 18700
+
+
+ 598
+ 19080
+
+
+ 599
+ 19460
+
+
+ 600
+ 19830
+
+
+ 601
+ 20200
+
+
+ 602
+ 20560
+
+
+ 603
+ 20910
+
+
+ 604
+ 21250
+
+
+ 605
+ 21600
+
+
+ 605.73
+ 21840
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 14930
+
+
+ 588
+ 15480
+
+
+ 589
+ 16000
+
+
+ 590
+ 16510
+
+
+ 591
+ 17000
+
+
+ 592
+ 17480
+
+
+ 593
+ 17950
+
+
+ 594
+ 18410
+
+
+ 595
+ 18850
+
+
+ 596
+ 19280
+
+
+ 597
+ 19710
+
+
+ 598
+ 20120
+
+
+ 599
+ 20530
+
+
+ 600
+ 20930
+
+
+ 601
+ 21320
+
+
+ 602
+ 21710
+
+
+ 603
+ 22090
+
+
+ 604
+ 22460
+
+
+ 605
+ 22820
+
+
+ 606
+ 23180
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16200
+
+
+ 589
+ 16770
+
+
+ 590
+ 17320
+
+
+ 591
+ 17860
+
+
+ 592
+ 18380
+
+
+ 593
+ 18880
+
+
+ 594
+ 19370
+
+
+ 595
+ 19850
+
+
+ 596
+ 20320
+
+
+ 597
+ 20780
+
+
+ 598
+ 21220
+
+
+ 599
+ 21660
+
+
+ 600
+ 22090
+
+
+ 601
+ 22510
+
+
+ 602
+ 22920
+
+
+ 603
+ 23330
+
+
+ 604
+ 23730
+
+
+ 605
+ 24120
+
+
+ 606
+ 24510
+
+
+ 606.24
+ 24600
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17520
+
+
+ 590
+ 18120
+
+
+ 591
+ 18690
+
+
+ 592
+ 19250
+
+
+ 593
+ 19800
+
+
+ 594
+ 20320
+
+
+ 595
+ 20840
+
+
+ 596
+ 21340
+
+
+ 597
+ 21830
+
+
+ 598
+ 22310
+
+
+ 599
+ 22780
+
+
+ 600
+ 23240
+
+
+ 601
+ 23700
+
+
+ 602
+ 24140
+
+
+ 603
+ 24570
+
+
+ 604
+ 25000
+
+
+ 605
+ 25420
+
+
+ 606
+ 25840
+
+
+ 606.44
+ 26020
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 18830
+
+
+ 591
+ 19450
+
+
+ 592
+ 20050
+
+
+ 593
+ 20630
+
+
+ 594
+ 21200
+
+
+ 595
+ 21750
+
+
+ 596
+ 22290
+
+
+ 597
+ 22810
+
+
+ 598
+ 23320
+
+
+ 599
+ 23830
+
+
+ 600
+ 24320
+
+
+ 601
+ 24800
+
+
+ 602
+ 25270
+
+
+ 603
+ 25740
+
+
+ 604
+ 26190
+
+
+ 605
+ 26640
+
+
+ 606
+ 27080
+
+
+ 606.62
+ 27350
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20260
+
+
+ 592
+ 20900
+
+
+ 593
+ 21530
+
+
+ 594
+ 22140
+
+
+ 595
+ 22730
+
+
+ 596
+ 23300
+
+
+ 597
+ 23860
+
+
+ 598
+ 24410
+
+
+ 599
+ 24950
+
+
+ 600
+ 25470
+
+
+ 601
+ 25990
+
+
+ 602
+ 26490
+
+
+ 603
+ 26990
+
+
+ 604
+ 27470
+
+
+ 605
+ 27950
+
+
+ 606
+ 28420
+
+
+ 606.77
+ 28770
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21660
+
+
+ 593
+ 22330
+
+
+ 594
+ 22970
+
+
+ 595
+ 23600
+
+
+ 596
+ 24220
+
+
+ 597
+ 24810
+
+
+ 598
+ 25400
+
+
+ 599
+ 25970
+
+
+ 600
+ 26530
+
+
+ 601
+ 27070
+
+
+ 602
+ 27610
+
+
+ 603
+ 28130
+
+
+ 604
+ 28650
+
+
+ 605
+ 29160
+
+
+ 606
+ 29660
+
+
+ 606.88
+ 30090
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21687
+
+
+ 593
+ 23043
+
+
+ 594
+ 23880
+
+
+ 595
+ 24550
+
+
+ 596
+ 25210
+
+
+ 597
+ 25850
+
+
+ 598
+ 26470
+
+
+ 599
+ 27080
+
+
+ 600
+ 27670
+
+
+ 601
+ 28250
+
+
+ 602
+ 28820
+
+
+ 603
+ 29380
+
+
+ 604
+ 29930
+
+
+ 605
+ 30470
+
+
+ 606
+ 31000
+
+
+ 606.95
+ 31490
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21687
+
+
+ 593
+ 23043
+
+
+ 594
+ 24435
+
+
+ 595
+ 25400
+
+
+ 596
+ 26090
+
+
+ 597
+ 26770
+
+
+ 598
+ 27430
+
+
+ 599
+ 28080
+
+
+ 600
+ 28710
+
+
+ 601
+ 29320
+
+
+ 602
+ 29930
+
+
+ 603
+ 30520
+
+
+ 604
+ 31100
+
+
+ 605
+ 31670
+
+
+ 606
+ 32230
+
+
+ 606.99
+ 32770
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21687
+
+
+ 593
+ 23043
+
+
+ 594
+ 24435
+
+
+ 595
+ 25867
+
+
+ 596
+ 27060
+
+
+ 597
+ 27780
+
+
+ 598
+ 28480
+
+
+ 599
+ 29170
+
+
+ 600
+ 29840
+
+
+ 601
+ 30490
+
+
+ 602
+ 31130
+
+
+ 603
+ 31760
+
+
+ 604
+ 32370
+
+
+ 605
+ 32980
+
+
+ 606
+ 33570
+
+
+ 607
+ 34150
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21687
+
+
+ 593
+ 23043
+
+
+ 594
+ 24435
+
+
+ 595
+ 25867
+
+
+ 596
+ 27337
+
+
+ 597
+ 28780
+
+
+ 598
+ 29530
+
+
+ 599
+ 30250
+
+
+ 600
+ 30960
+
+
+ 601
+ 31660
+
+
+ 602
+ 32330
+
+
+ 603
+ 33000
+
+
+ 604
+ 33650
+
+
+ 605
+ 34290
+
+
+ 606
+ 34920
+
+
+ 606.96
+ 35510
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21687
+
+
+ 593
+ 23043
+
+
+ 594
+ 24435
+
+
+ 595
+ 25867
+
+
+ 596
+ 27337
+
+
+ 597
+ 28848
+
+
+ 598
+ 30400
+
+
+ 599
+ 31220
+
+
+ 600
+ 31970
+
+
+ 601
+ 32710
+
+
+ 602
+ 33420
+
+
+ 603
+ 34120
+
+
+ 604
+ 34810
+
+
+ 605
+ 35480
+
+
+ 606
+ 36140
+
+
+ 606.88
+ 36710
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21687
+
+
+ 593
+ 23043
+
+
+ 594
+ 24435
+
+
+ 595
+ 25867
+
+
+ 596
+ 27337
+
+
+ 597
+ 28848
+
+
+ 598
+ 30400
+
+
+ 599
+ 31993
+
+
+ 600
+ 33090
+
+
+ 601
+ 33870
+
+
+ 602
+ 34620
+
+
+ 603
+ 35370
+
+
+ 604
+ 36090
+
+
+ 605
+ 36800
+
+
+ 606
+ 37500
+
+
+ 606.75
+ 38020
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21687
+
+
+ 593
+ 23043
+
+
+ 594
+ 24435
+
+
+ 595
+ 25867
+
+
+ 596
+ 27337
+
+
+ 597
+ 28848
+
+
+ 598
+ 30400
+
+
+ 599
+ 31993
+
+
+ 600
+ 33625
+
+
+ 601
+ 35030
+
+
+ 602
+ 35830
+
+
+ 603
+ 36610
+
+
+ 604
+ 37380
+
+
+ 605
+ 38130
+
+
+ 606
+ 38860
+
+
+ 606.57
+ 39280
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21687
+
+
+ 593
+ 23043
+
+
+ 594
+ 24435
+
+
+ 595
+ 25867
+
+
+ 596
+ 27337
+
+
+ 597
+ 28848
+
+
+ 598
+ 30400
+
+
+ 599
+ 31993
+
+
+ 600
+ 33625
+
+
+ 601
+ 35298
+
+
+ 602
+ 36920
+
+
+ 603
+ 37740
+
+
+ 604
+ 38540
+
+
+ 605
+ 39330
+
+
+ 606
+ 40110
+
+
+ 606.34
+ 40370
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21687
+
+
+ 593
+ 23043
+
+
+ 594
+ 24435
+
+
+ 595
+ 25867
+
+
+ 596
+ 27337
+
+
+ 597
+ 28848
+
+
+ 598
+ 30400
+
+
+ 599
+ 31993
+
+
+ 600
+ 33625
+
+
+ 601
+ 35298
+
+
+ 602
+ 37006
+
+
+ 603
+ 38745
+
+
+ 604
+ 39850
+
+
+ 605
+ 40680
+
+
+ 606
+ 41490
+
+
+ 606.05
+ 41530
+
+
+
+
+
+ 565
+ 0
+
+
+ 566
+ 125
+
+
+ 567
+ 357
+
+
+ 568
+ 662
+
+
+ 569
+ 1027
+
+
+ 570
+ 1448
+
+
+ 571
+ 1921
+
+
+ 572
+ 2443
+
+
+ 573
+ 3012
+
+
+ 574
+ 3627
+
+
+ 575
+ 4287
+
+
+ 576
+ 4992
+
+
+ 577
+ 5740
+
+
+ 578
+ 6530
+
+
+ 579
+ 7364
+
+
+ 580
+ 8237
+
+
+ 581
+ 9153
+
+
+ 582
+ 10107
+
+
+ 583
+ 11101
+
+
+ 584
+ 12132
+
+
+ 585
+ 13201
+
+
+ 586
+ 14306
+
+
+ 587
+ 15448
+
+
+ 588
+ 16625
+
+
+ 589
+ 17837
+
+
+ 590
+ 19085
+
+
+ 591
+ 20368
+
+
+ 592
+ 21687
+
+
+ 593
+ 23043
+
+
+ 594
+ 24435
+
+
+ 595
+ 25867
+
+
+ 596
+ 27337
+
+
+ 597
+ 28848
+
+
+ 598
+ 30400
+
+
+ 599
+ 31993
+
+
+ 600
+ 33625
+
+
+ 601
+ 35298
+
+
+ 602
+ 37006
+
+
+ 603
+ 38745
+
+
+ 604
+ 40510
+
+
+ 605
+ 42040
+
+
+ 605.69
+ 42640
+
+
+
+
diff --git a/cda-etl/data/sample-data/SWT/Ratings/KEYS.Elev;Area.Linear.Production.xml b/cda-etl/data/sample-data/SWT/Ratings/KEYS.Elev;Area.Linear.Production.xml
new file mode 100644
index 000000000..0e46691d2
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Ratings/KEYS.Elev;Area.Linear.Production.xml
@@ -0,0 +1,1514 @@
+
+
+
+ Elev;Area
+ Linear
+
+
+ Elev
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Area
+
+
+
+ KEYS.Elev;Area.Linear.Production
+ Elev;Area.Linear
+ KEYS
+ Production
+
+ LINEAR
+ NEAREST
+ NEAREST
+ true
+ false
+ false
+ false
+
+ 2222233332
+
+ 2222233332
+
+
+
+ KEYS.Elev;Area.Linear.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft;acre
+ 2020-08-01T00:00:00-05:00
+ 2021-11-01T11:04:00-05:00
+ true
+
+
+
+ 655
+ 0
+
+
+ 656
+ 8.11573856
+
+
+ 657
+ 9.2905203
+
+
+ 658
+ 10.4117479
+
+
+ 659
+ 13.0839042
+
+
+ 660
+ 17.9468052
+
+
+ 661
+ 21.977155
+
+
+ 662
+ 26.2594645
+
+
+ 663
+ 32.5102397
+
+
+ 664
+ 40.461704
+
+
+ 665
+ 62.9406102
+
+
+ 666
+ 93.0107102
+
+
+ 667
+ 166.343339
+
+
+ 668
+ 237.335454
+
+
+ 669
+ 366.771466
+
+
+ 670
+ 522.906223
+
+
+ 671
+ 656.74637
+
+
+ 672
+ 840.865493
+
+
+ 673
+ 1071.02547
+
+
+ 674
+ 1291.16977
+
+
+ 675
+ 1559.9196
+
+
+ 676
+ 1766.12957
+
+
+ 677
+ 1951.41123
+
+
+ 678
+ 2147.52918
+
+
+ 679
+ 2323.37632
+
+
+ 680
+ 2519.77504
+
+
+ 681
+ 2710.3362
+
+
+ 682
+ 2960.7344
+
+
+ 683
+ 3245.47479
+
+
+ 684
+ 3583.99796
+
+
+ 685
+ 3922.01276
+
+
+ 686
+ 4203.38905
+
+
+ 687
+ 4463.57235
+
+
+ 688
+ 4722.73939
+
+
+ 689
+ 4967.1089
+
+
+ 690
+ 5251.34055
+
+
+ 691
+ 5568.7173
+
+
+ 692
+ 5846.67486
+
+
+ 693
+ 6089.66878
+
+
+ 694
+ 6361.03404
+
+
+ 695
+ 6739.05653
+
+
+ 696
+ 7076.93805
+
+
+ 697
+ 7382.62781
+
+
+ 698
+ 7697.06297
+
+
+ 699
+ 7994.18281
+
+
+ 700
+ 8290.20503
+
+
+ 701
+ 8602.11333
+
+
+ 702
+ 8933.11928
+
+
+ 703
+ 9323.64628
+
+
+ 704
+ 9700.90087
+
+
+ 705
+ 10050.793
+
+
+ 706
+ 10384.1049
+
+
+ 707
+ 10705.8558
+
+
+ 708
+ 11046.7013
+
+
+ 709
+ 11352.0439
+
+
+ 710
+ 11638.8711
+
+
+ 711
+ 11942.7884
+
+
+ 712
+ 12242.8396
+
+
+ 713
+ 12540.8763
+
+
+ 714
+ 12845.2281
+
+
+ 715
+ 13145.6177
+
+
+ 716
+ 13435.8133
+
+
+ 717
+ 13723.974
+
+
+ 718
+ 14074.2714
+
+
+ 719
+ 14482.8823
+
+
+ 720
+ 14894.8685
+
+
+ 721
+ 15305.0051
+
+
+ 722
+ 15720.5294
+
+
+ 723
+ 16161.1633
+
+
+ 724
+ 16738.7328
+
+
+ 725
+ 17634.9586
+
+
+ 726
+ 19036.6507
+
+
+ 727
+ 20517.2686
+
+
+ 728
+ 22084.3156
+
+
+ 729
+ 23544.4854
+
+
+ 730
+ 24956.5578
+
+
+ 731
+ 26352.0695
+
+
+ 732
+ 27626.0184
+
+
+ 733
+ 28813.7128
+
+
+ 734
+ 29957.1166
+
+
+ 735
+ 31087.9549
+
+
+ 736
+ 32200.4983
+
+
+ 737
+ 33274.1582
+
+
+ 738
+ 34349.6309
+
+
+ 739
+ 35418.1253
+
+
+ 740
+ 36491.8866
+
+
+ 741
+ 37581.425
+
+
+ 742
+ 38689.4461
+
+
+ 743
+ 39808.611
+
+
+ 744
+ 40941.4623
+
+
+ 745
+ 42109.4021
+
+
+ 746
+ 43277.587
+
+
+ 747
+ 44422.6359
+
+
+ 748
+ 45558.029
+
+
+ 749
+ 46739.2401
+
+
+ 750
+ 47936.5899
+
+
+ 751
+ 49146.1662
+
+
+ 752
+ 50366.233
+
+
+ 753
+ 51647.0258
+
+
+ 754
+ 53016.8021
+
+
+ 755
+ 54458.6935
+
+
+ 756
+ 55942.5569
+
+
+ 757
+ 57428.5968
+
+
+ 758
+ 58907.1101
+
+
+ 759
+ 60368.4595
+
+
+ 760
+ 61841.0238
+
+
+ 761
+ 63336.4909
+
+
+ 762
+ 64838.1655
+
+
+ 763
+ 66388.5906
+
+
+ 764
+ 67972.0446
+
+
+ 765
+ 69597.3647
+
+
+ 766
+ 71241.1391
+
+
+ 767
+ 72881.2645
+
+
+ 768
+ 74583.281
+
+
+ 769
+ 76341.1142
+
+
+ 770
+ 78101.3513
+
+
+ 771
+ 79847.772
+
+
+ 772
+ 81588.9209
+
+
+ 773
+ 83333.0029
+
+
+ 774
+ 85095.8212
+
+
+ 775
+ 86883.0443
+
+
+ 776
+ 88701.8187
+
+
+ 777
+ 90568.3763
+
+
+ 778
+ 92507.5857
+
+
+
+
+ KEYS.Elev;Area.Linear.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft;acre
+ 2009-01-14T00:00:00-06:00
+ 2012-07-11T09:37:12-05:00
+ true
+
+
+
+ 657.4
+ 0
+
+
+ 658.4
+ 1
+
+
+ 659.4
+ 4
+
+
+ 660.4
+ 9
+
+
+ 661.4
+ 20
+
+
+ 662.4
+ 44
+
+
+ 663.4
+ 90
+
+
+ 664.4
+ 162
+
+
+ 665.4
+ 261
+
+
+ 666.4
+ 378
+
+
+ 667.4
+ 492
+
+
+ 668.4
+ 637
+
+
+ 669.4
+ 819
+
+
+ 670.4
+ 1010
+
+
+ 671.4
+ 1220
+
+
+ 672.4
+ 1450
+
+
+ 673.4
+ 1681
+
+
+ 674.4
+ 1896
+
+
+ 675.4
+ 2108
+
+
+ 676.4
+ 2297
+
+
+ 677.4
+ 2490
+
+
+ 678.4
+ 2670
+
+
+ 679.4
+ 2884
+
+
+ 680.4
+ 3130
+
+
+ 681.4
+ 3380
+
+
+ 682.4
+ 3681
+
+
+ 683.4
+ 4011
+
+
+ 684.4
+ 4291
+
+
+ 685.4
+ 4568
+
+
+ 686.4
+ 4893
+
+
+ 687.4
+ 5161
+
+
+ 688.4
+ 5393
+
+
+ 689.4
+ 5636
+
+
+ 690.4
+ 5908
+
+
+ 691.4
+ 6184
+
+
+ 692.4
+ 6568
+
+
+ 693.4
+ 6920
+
+
+ 694.4
+ 7200
+
+
+ 695.4
+ 7499
+
+
+ 696.4
+ 7817
+
+
+ 697.4
+ 8172
+
+
+ 698.4
+ 8590
+
+
+ 699.4
+ 8996
+
+
+ 700.4
+ 9369
+
+
+ 701.4
+ 9705
+
+
+ 702.4
+ 10076
+
+
+ 703.4
+ 10420
+
+
+ 704.4
+ 10758
+
+
+ 705.4
+ 11046
+
+
+ 706.4
+ 11327
+
+
+ 707.4
+ 11617
+
+
+ 708.4
+ 11916
+
+
+ 709.4
+ 12211
+
+
+ 710.4
+ 12518
+
+
+ 711.4
+ 12823
+
+
+ 712.4
+ 13123
+
+
+ 713.4
+ 13437
+
+
+ 714.4
+ 13802
+
+
+ 715.4
+ 14176
+
+
+ 716.4
+ 14575
+
+
+ 717.4
+ 14981
+
+
+ 718.4
+ 15361
+
+
+ 719.4
+ 15730
+
+
+ 720.4
+ 16057
+
+
+ 721.4
+ 16387
+
+
+ 722.4
+ 16724
+
+
+ 723.4
+ 17074
+
+
+ 724.4
+ 20318
+
+
+ 725.4
+ 22655
+
+
+ 726.4
+ 23918
+
+
+ 727.4
+ 25167
+
+
+ 728.4
+ 26464
+
+
+ 729.4
+ 27629
+
+
+ 730.4
+ 28664
+
+
+ 731.4
+ 29714
+
+
+ 732.4
+ 30757
+
+
+ 733.4
+ 31744
+
+
+ 734.4
+ 32684
+
+
+ 735.4
+ 33692
+
+
+ 736.4
+ 34682
+
+
+ 737.4
+ 35631
+
+
+ 738.4
+ 36633
+
+
+ 739.4
+ 37571
+
+
+ 740.4
+ 38571
+
+
+ 741.4
+ 39540
+
+
+ 742.4
+ 40528
+
+
+ 743.4
+ 41542
+
+
+ 744.4
+ 42545
+
+
+ 745.4
+ 43576
+
+
+ 746.4
+ 44650
+
+
+ 747.4
+ 45637
+
+
+ 748.4
+ 46646
+
+
+ 749.4
+ 47570
+
+
+ 750.4
+ 48482
+
+
+ 751.4
+ 49413
+
+
+ 752.4
+ 50241
+
+
+ 753.4
+ 50750
+
+
+ 754.4
+ 52751
+
+
+ 755.4
+ 54752
+
+
+ 756.4
+ 56753
+
+
+ 757.4
+ 58753
+
+
+ 758.4
+ 60754
+
+
+ 759.4
+ 62755
+
+
+ 760.4
+ 64531
+
+
+ 761.4
+ 66308
+
+
+ 762.4
+ 68084
+
+
+ 763.4
+ 69860
+
+
+ 764.4
+ 71636
+
+
+ 765.4
+ 73126
+
+
+ 766.4
+ 74615
+
+
+ 767.4
+ 76104
+
+
+ 768.4
+ 77594
+
+
+ 769.4
+ 79083
+
+
+ 770.4
+ 80983
+
+
+ 771.4
+ 82883
+
+
+ 772.4
+ 84783
+
+
+ 773.4
+ 86683
+
+
+ 774.4
+ 88583
+
+
+ 775.4
+ 90205
+
+
+ 776.4
+ 91827
+
+
+ 777.4
+ 93449
+
+
+ 778.4
+ 95071
+
+
+ 779.4
+ 96693
+
+
+
+
+ KEYS.Elev;Area.Linear.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft;acre
+ 2011-10-19T00:00:00-05:00
+ 2012-10-30T14:27:00-05:00
+ true
+
+
+
+ 657.4
+ 0
+
+
+ 658.4
+ 1
+
+
+ 659.4
+ 4
+
+
+ 660.4
+ 9
+
+
+ 661.4
+ 20
+
+
+ 662.4
+ 44
+
+
+ 663.4
+ 90
+
+
+ 664.4
+ 162
+
+
+ 665.4
+ 261
+
+
+ 666.4
+ 378
+
+
+ 673
+ 1454
+
+
+ 674
+ 1686
+
+
+ 675
+ 1901
+
+
+ 676
+ 2113
+
+
+ 677
+ 2303
+
+
+ 678
+ 2495
+
+
+ 679
+ 2678
+
+
+ 680
+ 2891
+
+
+ 681
+ 3139
+
+
+ 682
+ 3388
+
+
+ 683
+ 3691
+
+
+ 684
+ 4022
+
+
+ 685
+ 4302
+
+
+ 686
+ 4583
+
+
+ 687
+ 4906
+
+
+ 688
+ 5175
+
+
+ 689
+ 5410
+
+
+ 690
+ 5652
+
+
+ 691
+ 5927
+
+
+ 692
+ 6205
+
+
+ 693
+ 6591
+
+
+ 694
+ 6943
+
+
+ 695
+ 7225
+
+
+ 696
+ 7526
+
+
+ 697
+ 7847
+
+
+ 698
+ 8203
+
+
+ 699
+ 8623
+
+
+ 700
+ 9032
+
+
+ 701
+ 9407
+
+
+ 702
+ 9746
+
+
+ 703
+ 10121
+
+
+ 704
+ 10469
+
+
+ 705
+ 10810
+
+
+ 706
+ 11099
+
+
+ 707
+ 11377
+
+
+ 708
+ 11668
+
+
+ 709
+ 11968
+
+
+ 710
+ 12260
+
+
+ 711
+ 12567
+
+
+ 712
+ 12867
+
+
+ 713
+ 13171
+
+
+ 714
+ 13489
+
+
+ 715
+ 13855
+
+
+ 716
+ 14231
+
+
+ 717
+ 14633
+
+
+ 718
+ 15042
+
+
+ 719
+ 15420
+
+
+ 720
+ 15781
+
+
+ 721
+ 16101
+
+
+ 722
+ 16419
+
+
+ 723
+ 16739
+
+
+ 724
+ 17068
+
+
+ 725
+ 20573
+
+
+ 726
+ 22160
+
+
+ 727
+ 23107
+
+
+ 728
+ 24806
+
+
+ 729
+ 26381
+
+
+ 730
+ 27364
+
+
+ 731
+ 28538
+
+
+ 732
+ 29396
+
+
+ 733
+ 30304
+
+
+ 734
+ 31193
+
+
+ 735
+ 31994
+
+
+ 736
+ 33296
+
+
+ 737
+ 34136
+
+
+ 738
+ 34948
+
+
+ 739
+ 36674
+
+
+ 740
+ 37602
+
+
+ 741
+ 38686
+
+
+ 742
+ 39623
+
+
+ 743
+ 40526
+
+
+ 744
+ 41641
+
+
+ 745
+ 42720
+
+
+ 746
+ 43827
+
+
+ 747
+ 44941
+
+
+ 748
+ 46028
+
+
+ 749
+ 47032
+
+
+ 750
+ 48066
+
+
+ 751
+ 49163
+
+
+ 752
+ 50590
+
+
+ 753
+ 51765
+
+
+ 754
+ 53030
+
+
+ 755
+ 54281
+
+
+ 756
+ 55831
+
+
+ 757
+ 57143
+
+
+ 758
+ 58466
+
+
+ 759
+ 60264
+
+
+ 760
+ 61889
+
+
+ 761
+ 63376
+
+
+ 762
+ 65084
+
+
+ 763
+ 66773
+
+
+ 764
+ 68297
+
+
+ 765
+ 69885
+
+
+ 766
+ 71448
+
+
+ 767
+ 73299
+
+
+ 768
+ 74880
+
+
+ 769
+ 76501
+
+
+ 770
+ 78022
+
+
+ 771
+ 79535
+
+
+
+
diff --git a/cda-etl/data/sample-data/SWT/Ratings/KEYS.Elev;Stor.Linear.Production.xml b/cda-etl/data/sample-data/SWT/Ratings/KEYS.Elev;Stor.Linear.Production.xml
new file mode 100644
index 000000000..69ee8afca
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Ratings/KEYS.Elev;Stor.Linear.Production.xml
@@ -0,0 +1,1514 @@
+
+
+
+ Elev;Stor
+ Linear
+
+
+ Elev
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Stor
+
+
+
+ KEYS.Elev;Stor.Linear.Production
+ Elev;Stor.Linear
+ KEYS
+ Production
+
+ LINEAR
+ NEAREST
+ NEAREST
+ true
+ false
+ false
+ false
+
+ 2222233332
+
+ 2222233332
+
+
+
+ KEYS.Elev;Stor.Linear.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft;ac-ft
+ 2020-08-01T00:00:00-05:00
+ 2020-08-01T00:00:00-05:00
+ true
+
+
+
+ 655
+ 0
+
+
+ 656
+ 47.0638598
+
+
+ 657
+ 55.7053002
+
+
+ 658
+ 65.5130431
+
+
+ 659
+ 76.8816082
+
+
+ 660
+ 92.3365387
+
+
+ 661
+ 112.329686
+
+
+ 662
+ 136.347271
+
+
+ 663
+ 165.437611
+
+
+ 664
+ 201.5328
+
+
+ 665
+ 253.00488
+
+
+ 666
+ 329.487466
+
+
+ 667
+ 458.126238
+
+
+ 668
+ 657.129485
+
+
+ 669
+ 954.192871
+
+
+ 670
+ 1404.54074
+
+
+ 671
+ 1990.92593
+
+
+ 672
+ 2729.54928
+
+
+ 673
+ 3697.81865
+
+
+ 674
+ 4860.69149
+
+
+ 675
+ 6299.16915
+
+
+ 676
+ 7966.18342
+
+
+ 677
+ 9830.10231
+
+
+ 678
+ 11878.003
+
+
+ 679
+ 14116.7576
+
+
+ 680
+ 16533.0674
+
+
+ 681
+ 19147.7742
+
+
+ 682
+ 21974.9406
+
+
+ 683
+ 25073.7276
+
+
+ 684
+ 28480.4542
+
+
+ 685
+ 32239.1602
+
+
+ 686
+ 36309.2989
+
+
+ 687
+ 40640.8516
+
+
+ 688
+ 45232.5845
+
+
+ 689
+ 50074.5745
+
+
+ 690
+ 55186.8867
+
+
+ 691
+ 60595.9438
+
+
+ 692
+ 66307.0222
+
+
+ 693
+ 72274.7991
+
+
+ 694
+ 78490.332
+
+
+ 695
+ 85029.5132
+
+
+ 696
+ 91935.7907
+
+
+ 697
+ 99165.1268
+
+
+ 698
+ 106706.319
+
+
+ 699
+ 114552.255
+
+
+ 700
+ 122690.384
+
+
+ 701
+ 131134.83
+
+
+ 702
+ 139898.739
+
+
+ 703
+ 149023.174
+
+
+ 704
+ 158535.332
+
+
+ 705
+ 168411.132
+
+
+ 706
+ 178628.52
+
+
+ 707
+ 189173.248
+
+
+ 708
+ 200046.547
+
+
+ 709
+ 211252.036
+
+
+ 710
+ 222744.974
+
+
+ 711
+ 234535.802
+
+
+ 712
+ 246625.842
+
+
+ 713
+ 259016.547
+
+
+ 714
+ 271705.092
+
+
+ 715
+ 284703.061
+
+
+ 716
+ 297992.432
+
+
+ 717
+ 311570.508
+
+
+ 718
+ 325462.721
+
+
+ 719
+ 339737.28
+
+
+ 720
+ 354427.42
+
+
+ 721
+ 369524.905
+
+
+ 722
+ 385035.812
+
+
+ 723
+ 400983.849
+
+
+ 724
+ 417401.977
+
+
+ 725
+ 434558.255
+
+
+ 726
+ 452835.229
+
+
+ 727
+ 472588.944
+
+
+ 728
+ 493852.862
+
+
+ 729
+ 516657.467
+
+
+ 730
+ 540892.777
+
+
+ 731
+ 566537.878
+
+
+ 732
+ 593520.495
+
+
+ 733
+ 621732.643
+
+
+ 734
+ 651113.219
+
+
+ 735
+ 681627.354
+
+
+ 736
+ 713262.677
+
+
+ 737
+ 745991.681
+
+
+ 738
+ 779796.162
+
+
+ 739
+ 814671.319
+
+
+ 740
+ 850617.857
+
+
+ 741
+ 887645.235
+
+
+ 742
+ 925773.431
+
+
+ 743
+ 965012.97
+
+
+ 744
+ 1005381.82
+
+
+ 745
+ 1046901.49
+
+
+ 746
+ 1089590.58
+
+
+ 747
+ 1133437.3
+
+
+ 748
+ 1178421.11
+
+
+ 749
+ 1224566.04
+
+
+ 750
+ 1271897.04
+
+
+ 751
+ 1320434.59
+
+
+ 752
+ 1370184.39
+
+
+ 753
+ 1421184.26
+
+
+ 754
+ 1473504.28
+
+
+ 755
+ 1527238.21
+
+
+ 756
+ 1582448.66
+
+
+ 757
+ 1639134.65
+
+
+ 758
+ 1697311.95
+
+
+ 759
+ 1756951.6
+
+
+ 760
+ 1818056.13
+
+
+ 761
+ 1880651.97
+
+
+ 762
+ 1944739.75
+
+
+ 763
+ 2010352.35
+
+
+ 764
+ 2077535.54
+
+
+ 765
+ 2146321.84
+
+
+ 766
+ 2216748.58
+
+
+ 767
+ 2288809.21
+
+
+ 768
+ 2362540.32
+
+
+ 769
+ 2438003.71
+
+
+ 770
+ 2515229.75
+
+
+ 771
+ 2594209.58
+
+
+ 772
+ 2674931.36
+
+
+ 773
+ 2757388.77
+
+
+ 774
+ 2841597.73
+
+
+ 775
+ 2927584.24
+
+
+ 776
+ 3015368.17
+
+
+ 777
+ 3104994.45
+
+
+ 778
+ 3196523.37
+
+
+
+
+ KEYS.Elev;Stor.Linear.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft;ac-ft
+ 2009-01-14T00:00:00-06:00
+ 2012-07-11T09:37:13-05:00
+ true
+
+
+
+ 657.4
+ 0
+
+
+ 658.4
+ 1
+
+
+ 659.4
+ 3
+
+
+ 660.4
+ 9
+
+
+ 661.4
+ 22
+
+
+ 662.4
+ 53
+
+
+ 663.4
+ 117
+
+
+ 664.4
+ 242
+
+
+ 665.4
+ 447
+
+
+ 666.4
+ 765
+
+
+ 667.4
+ 1201
+
+
+ 668.4
+ 1761
+
+
+ 669.4
+ 2483
+
+
+ 670.4
+ 3398
+
+
+ 671.4
+ 4515
+
+
+ 672.4
+ 5848
+
+
+ 673.4
+ 7416
+
+
+ 674.4
+ 9206
+
+
+ 675.4
+ 11213
+
+
+ 676.4
+ 13412
+
+
+ 677.4
+ 15808
+
+
+ 678.4
+ 18386
+
+
+ 679.4
+ 21159
+
+
+ 680.4
+ 24163
+
+
+ 681.4
+ 27417
+
+
+ 682.4
+ 30937
+
+
+ 683.4
+ 34786
+
+
+ 684.4
+ 38935
+
+
+ 685.4
+ 43360
+
+
+ 686.4
+ 48089
+
+
+ 687.4
+ 53121
+
+
+ 688.4
+ 58394
+
+
+ 689.4
+ 63905
+
+
+ 690.4
+ 69671
+
+
+ 691.4
+ 75714
+
+
+ 692.4
+ 82081
+
+
+ 693.4
+ 88831
+
+
+ 694.4
+ 95890
+
+
+ 695.4
+ 103230
+
+
+ 696.4
+ 110890
+
+
+ 697.4
+ 118880
+
+
+ 698.4
+ 127250
+
+
+ 699.4
+ 136040
+
+
+ 700.4
+ 145220
+
+
+ 701.4
+ 154760
+
+
+ 702.4
+ 164640
+
+
+ 703.4
+ 174890
+
+
+ 704.4
+ 185480
+
+
+ 705.4
+ 196380
+
+
+ 706.4
+ 207560
+
+
+ 707.4
+ 219030
+
+
+ 708.4
+ 230800
+
+
+ 709.4
+ 242860
+
+
+ 710.4
+ 255220
+
+
+ 711.4
+ 267890
+
+
+ 712.4
+ 280860
+
+
+ 713.4
+ 294140
+
+
+ 714.4
+ 307760
+
+
+ 715.4
+ 321750
+
+
+ 716.4
+ 336120
+
+
+ 717.4
+ 350900
+
+
+ 718.4
+ 366070
+
+
+ 719.4
+ 381620
+
+
+ 720.4
+ 397510
+
+
+ 721.4
+ 413730
+
+
+ 722.4
+ 430280
+
+
+ 723.4
+ 447180
+
+
+ 724.4
+ 465570
+
+
+ 725.4
+ 487200
+
+
+ 726.4
+ 510450
+
+
+ 727.4
+ 534940
+
+
+ 728.4
+ 560680
+
+
+ 729.4
+ 587700
+
+
+ 730.4
+ 615800
+
+
+ 731.4
+ 644930
+
+
+ 732.4
+ 675130
+
+
+ 733.4
+ 706340
+
+
+ 734.4
+ 738520
+
+
+ 735.4
+ 771680
+
+
+ 736.4
+ 805830
+
+
+ 737.4
+ 840960
+
+
+ 738.4
+ 877090
+
+
+ 739.4
+ 914170
+
+
+ 740.4
+ 952220
+
+
+ 741.4
+ 991260
+
+
+ 742.4
+ 1031300
+
+
+ 743.4
+ 1072300
+
+
+ 744.4
+ 1114300
+
+
+ 745.4
+ 1157400
+
+
+ 746.4
+ 1201500
+
+
+ 747.4
+ 1246700
+
+
+ 748.4
+ 1292900
+
+
+ 749.4
+ 1340000
+
+
+ 750.4
+ 1388100
+
+
+ 751.4
+ 1437200
+
+
+ 752.4
+ 1487200
+
+
+ 753.4
+ 1537900
+
+
+ 754.4
+ 1589700
+
+
+ 755.4
+ 1643400
+
+
+ 756.4
+ 1699100
+
+
+ 757.4
+ 1756900
+
+
+ 758.4
+ 1816600
+
+
+ 759.4
+ 1878400
+
+
+ 760.4
+ 1942000
+
+
+ 761.4
+ 2007500
+
+
+ 762.4
+ 2074700
+
+
+ 763.4
+ 2143600
+
+
+ 764.4
+ 2214400
+
+
+ 765.4
+ 2286700
+
+
+ 766.4
+ 2360600
+
+
+ 767.4
+ 2436000
+
+
+ 768.4
+ 2512800
+
+
+ 769.4
+ 2591200
+
+
+ 770.4
+ 2671200
+
+
+ 771.4
+ 2753100
+
+
+ 772.4
+ 2837000
+
+
+ 773.4
+ 2922700
+
+
+ 774.4
+ 3010300
+
+
+ 775.4
+ 3099700
+
+
+ 776.4
+ 3190700
+
+
+ 777.4
+ 3283400
+
+
+ 778.4
+ 3377600
+
+
+ 779.4
+ 3473500
+
+
+
+
+ KEYS.Elev;Stor.Linear.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft;ac-ft
+ 2011-10-19T00:00:00-05:00
+ 2012-10-30T14:27:00-05:00
+ true
+
+
+
+ 657.4
+ 0
+
+
+ 658.4
+ 1
+
+
+ 659.4
+ 3
+
+
+ 660.4
+ 9
+
+
+ 661.4
+ 22
+
+
+ 662.4
+ 53
+
+
+ 663.4
+ 117
+
+
+ 664.4
+ 242
+
+
+ 665.4
+ 447
+
+
+ 666.4
+ 765
+
+
+ 673
+ 5875
+
+
+ 674
+ 7447
+
+
+ 675
+ 9243
+
+
+ 676
+ 11255
+
+
+ 677
+ 13462
+
+
+ 678
+ 15864
+
+
+ 679
+ 18450
+
+
+ 680
+ 21232
+
+
+ 681
+ 24245
+
+
+ 682
+ 27509
+
+
+ 683
+ 31041
+
+
+ 684
+ 34902
+
+
+ 685
+ 39064
+
+
+ 686
+ 43504
+
+
+ 687
+ 48248
+
+
+ 688
+ 53296
+
+
+ 689
+ 58585
+
+
+ 690
+ 64114
+
+
+ 691
+ 69902
+
+
+ 692
+ 75966
+
+
+ 693
+ 82359
+
+
+ 694
+ 89135
+
+
+ 695
+ 96221
+
+
+ 696
+ 103590
+
+
+ 697
+ 111280
+
+
+ 698
+ 119300
+
+
+ 699
+ 127700
+
+
+ 700
+ 136540
+
+
+ 701
+ 145760
+
+
+ 702
+ 155330
+
+
+ 703
+ 165270
+
+
+ 704
+ 175560
+
+
+ 705
+ 186210
+
+
+ 706
+ 197160
+
+
+ 707
+ 208400
+
+
+ 708
+ 219920
+
+
+ 709
+ 231740
+
+
+ 710
+ 243850
+
+
+ 711
+ 256270
+
+
+ 712
+ 268980
+
+
+ 713
+ 282000
+
+
+ 714
+ 295330
+
+
+ 715
+ 309000
+
+
+ 716
+ 323040
+
+
+ 717
+ 337470
+
+
+ 718
+ 352310
+
+
+ 719
+ 367540
+
+
+ 720
+ 383140
+
+
+ 721
+ 399090
+
+
+ 722
+ 415340
+
+
+ 723
+ 431920
+
+
+ 724
+ 448830
+
+
+ 725
+ 467650
+
+
+ 726
+ 490150
+
+
+ 727
+ 513030
+
+
+ 728
+ 538970
+
+
+ 729
+ 565520
+
+
+ 730
+ 592740
+
+
+ 731
+ 621230
+
+
+ 732
+ 650350
+
+
+ 733
+ 680350
+
+
+ 734
+ 711670
+
+
+ 735
+ 743360
+
+
+ 736
+ 777630
+
+
+ 737
+ 811580
+
+
+ 738
+ 846170
+
+
+ 739
+ 885820
+
+
+ 740
+ 923320
+
+
+ 741
+ 962190
+
+
+ 742
+ 1001400
+
+
+ 743
+ 1041700
+
+
+ 744
+ 1083600
+
+
+ 745
+ 1125900
+
+
+ 746
+ 1169500
+
+
+ 747
+ 1214200
+
+
+ 748
+ 1260100
+
+
+ 749
+ 1306900
+
+
+ 750
+ 1354500
+
+
+ 751
+ 1403600
+
+
+ 752
+ 1455900
+
+
+ 753
+ 1507700
+
+
+ 754
+ 1560600
+
+
+ 755
+ 1614400
+
+
+ 756
+ 1670400
+
+
+ 757
+ 1727100
+
+
+ 758
+ 1785400
+
+
+ 759
+ 1852200
+
+
+ 760
+ 1916600
+
+
+ 761
+ 1979800
+
+
+ 762
+ 2045800
+
+
+ 763
+ 2113900
+
+
+ 764
+ 2182100
+
+
+ 765
+ 2251200
+
+
+ 766
+ 2322300
+
+
+ 767
+ 2395900
+
+
+ 768
+ 2470300
+
+
+ 769
+ 2546400
+
+
+ 770
+ 2624300
+
+
+ 771
+ 2703400
+
+
+
+
diff --git a/cda-etl/data/sample-data/SWT/Ratings/KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production.xml b/cda-etl/data/sample-data/SWT/Ratings/KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production.xml
new file mode 100644
index 000000000..e39888493
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Ratings/KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production.xml
@@ -0,0 +1,4985 @@
+
+
+
+ Opening-Sluice_Gates,Elev;Flow-Sluice_Gates
+ Standard
+
+
+ Opening-Sluice_Gates
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Elev
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Flow-Sluice_Gates
+
+
+
+ KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production
+ Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard
+ KEYS
+ Production
+
+ PREVIOUS
+ NEAREST
+ PREVIOUS
+ true
+ false
+ false
+ false
+
+ 2222233332
+ 2222233332
+
+ 2222233332
+
+
+
+ KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft,ft;cfs
+ 1988-11-01T09:00:00-06:00
+ 2014-10-21T11:32:40-05:00
+ true
+
+
+
+
+ 657
+ 0
+
+
+ 765
+ 0
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 50
+
+
+ 710
+ 115
+
+
+ 740
+ 155
+
+
+ 750
+ 160
+
+
+ 765
+ 170
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 100
+
+
+ 680
+ 150
+
+
+ 700
+ 215
+
+
+ 730
+ 280
+
+
+ 750
+ 320
+
+
+ 765
+ 340
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 160
+
+
+ 680
+ 220
+
+
+ 710
+ 355
+
+
+ 740
+ 460
+
+
+ 765
+ 520
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 235
+
+
+ 680
+ 305
+
+
+ 695
+ 395
+
+
+ 720
+ 515
+
+
+ 740
+ 595
+
+
+ 765
+ 690
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 285
+
+
+ 680
+ 380
+
+
+ 690
+ 460
+
+
+ 710
+ 595
+
+
+ 740
+ 755
+
+
+ 765
+ 870
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 340
+
+
+ 680
+ 450
+
+
+ 695
+ 595
+
+
+ 710
+ 710
+
+
+ 730
+ 840
+
+
+ 750
+ 960
+
+
+ 765
+ 1040
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 440
+
+
+ 680
+ 610
+
+
+ 690
+ 745
+
+
+ 700
+ 860
+
+
+ 710
+ 965
+
+
+ 720
+ 1055
+
+
+ 740
+ 1215
+
+
+ 765
+ 1390
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 550
+
+
+ 685
+ 855
+
+
+ 695
+ 1010
+
+
+ 700
+ 1080
+
+
+ 710
+ 1215
+
+
+ 720
+ 1310
+
+
+ 740
+ 1530
+
+
+ 765
+ 1760
+
+
+
+
+
+ 657
+ .1
+
+
+ 675
+ 780
+
+
+ 680
+ 910
+
+
+ 690
+ 1125
+
+
+ 700
+ 1305
+
+
+ 710
+ 1460
+
+
+ 730
+ 1730
+
+
+ 750
+ 1975
+
+
+ 765
+ 2140
+
+
+
+
+
+ 657
+ .1
+
+
+ 675
+ 900
+
+
+ 680
+ 1055
+
+
+ 685
+ 1195
+
+
+ 690
+ 1320
+
+
+ 700
+ 1535
+
+
+ 710
+ 1730
+
+
+ 720
+ 1895
+
+
+ 730
+ 2050
+
+
+ 750
+ 2335
+
+
+ 765
+ 2540
+
+
+
+
+
+ 657
+ .1
+
+
+ 660
+ 60
+
+
+ 661
+ 100
+
+
+ 663
+ 210
+
+
+ 666
+ 410
+
+
+ 668
+ 570
+
+
+ 670
+ 750
+
+
+ 672
+ 960
+
+
+ 675
+ 1300
+
+
+ 676
+ 1380
+
+
+ 680
+ 1615
+
+
+ 685
+ 1850
+
+
+ 690
+ 2055
+
+
+ 700
+ 2410
+
+
+ 710
+ 2730
+
+
+ 720
+ 2995
+
+
+ 730
+ 3240
+
+
+ 750
+ 3700
+
+
+ 765
+ 4030
+
+
+
+
+ KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft,ft;cfs
+ 1988-11-01T00:00:00-06:00
+ 2012-10-30T11:18:34-05:00
+ true
+
+
+
+
+ 657
+ 0
+
+
+ 765
+ 0
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 50
+
+
+ 710
+ 115
+
+
+ 740
+ 155
+
+
+ 750
+ 160
+
+
+ 765
+ 170
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 100
+
+
+ 680
+ 150
+
+
+ 700
+ 215
+
+
+ 730
+ 280
+
+
+ 750
+ 320
+
+
+ 765
+ 340
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 160
+
+
+ 680
+ 220
+
+
+ 710
+ 355
+
+
+ 740
+ 460
+
+
+ 765
+ 520
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 235
+
+
+ 680
+ 305
+
+
+ 695
+ 395
+
+
+ 720
+ 515
+
+
+ 740
+ 595
+
+
+ 765
+ 690
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 285
+
+
+ 680
+ 380
+
+
+ 690
+ 460
+
+
+ 710
+ 595
+
+
+ 740
+ 755
+
+
+ 765
+ 870
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 340
+
+
+ 680
+ 450
+
+
+ 695
+ 595
+
+
+ 710
+ 710
+
+
+ 730
+ 840
+
+
+ 750
+ 960
+
+
+ 765
+ 1040
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 440
+
+
+ 680
+ 610
+
+
+ 690
+ 745
+
+
+ 700
+ 860
+
+
+ 710
+ 965
+
+
+ 720
+ 1055
+
+
+ 740
+ 1215
+
+
+ 765
+ 1390
+
+
+
+
+
+ 657
+ .1
+
+
+ 670
+ 550
+
+
+ 685
+ 855
+
+
+ 695
+ 1010
+
+
+ 700
+ 1080
+
+
+ 710
+ 1215
+
+
+ 720
+ 1310
+
+
+ 740
+ 1530
+
+
+ 765
+ 1760
+
+
+
+
+
+ 657
+ .1
+
+
+ 675
+ 780
+
+
+ 680
+ 910
+
+
+ 690
+ 1125
+
+
+ 700
+ 1305
+
+
+ 710
+ 1460
+
+
+ 730
+ 1730
+
+
+ 750
+ 1975
+
+
+ 765
+ 2140
+
+
+
+
+
+ 657
+ .1
+
+
+ 675
+ 900
+
+
+ 680
+ 1055
+
+
+ 685
+ 1195
+
+
+ 690
+ 1320
+
+
+ 700
+ 1535
+
+
+ 710
+ 1730
+
+
+ 720
+ 1895
+
+
+ 730
+ 2050
+
+
+ 750
+ 2335
+
+
+ 765
+ 2540
+
+
+
+
+
+ 657
+ .1
+
+
+ 660
+ 60
+
+
+ 661
+ 100
+
+
+ 663
+ 210
+
+
+ 666
+ 410
+
+
+ 668
+ 570
+
+
+ 670
+ 750
+
+
+ 672
+ 960
+
+
+ 675
+ 1300
+
+
+ 676
+ 1380
+
+
+ 680
+ 1615
+
+
+ 685
+ 1850
+
+
+ 690
+ 2055
+
+
+ 700
+ 2410
+
+
+ 710
+ 2730
+
+
+ 720
+ 2995
+
+
+ 730
+ 3240
+
+
+ 750
+ 3700
+
+
+ 765
+ 4030
+
+
+
+
+ KEYS.Opening-Sluice_Gates,Elev;Flow-Sluice_Gates.Standard.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft,ft;cfs
+ 2013-06-01T10:00:00-05:00
+ 2016-10-31T12:54:00-05:00
+ false
+
+
+
+
+ 657
+ 0
+
+
+ 775
+ 0
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 3.20047165
+
+
+ 659
+ 4.61452275
+
+
+ 660
+ 5.68723322
+
+
+ 661
+ 6.58752026
+
+
+ 662
+ 7.3787685
+
+
+ 663
+ 8.09302329
+
+
+ 664
+ 8.74916153
+
+
+ 665
+ 9.35941392
+
+
+ 666
+ 9.93224196
+
+
+ 667
+ 10.4737878
+
+
+ 668
+ 10.9886775
+
+
+ 669
+ 11.480498
+
+
+ 670
+ 11.9520976
+
+
+ 671
+ 12.4057824
+
+
+ 672
+ 12.8434512
+
+
+ 673
+ 13.2666891
+
+
+ 674
+ 13.676836
+
+
+ 675
+ 14.0750362
+
+
+ 676
+ 14.4622766
+
+
+ 677
+ 14.8394153
+
+
+ 678
+ 15.2072038
+
+
+ 679
+ 15.5663049
+
+
+ 680
+ 15.9173066
+
+
+ 685
+ 17.5674317
+
+
+ 690
+ 19.0753418
+
+
+ 695
+ 20.4724857
+
+
+ 700
+ 21.7801901
+
+
+ 705
+ 23.0137065
+
+
+ 710
+ 24.1843895
+
+
+ 715
+ 25.3009625
+
+
+ 720
+ 26.3702997
+
+
+ 721
+ 26.5790051
+
+
+ 722
+ 26.7860843
+
+
+ 723
+ 26.9915748
+
+
+ 724
+ 27.1955128
+
+
+ 725
+ 27.3979327
+
+
+ 730
+ 28.3883906
+
+
+ 735
+ 29.345438
+
+
+ 740
+ 30.2722437
+
+
+ 745
+ 31.1715053
+
+
+ 750
+ 32.0455418
+
+
+ 755
+ 32.8963639
+
+
+ 760
+ 33.7257285
+
+
+ 765
+ 34.5351817
+
+
+ 770
+ 35.3260921
+
+
+ 775
+ 36.0996785
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 13.228062
+
+
+ 659
+ 21.2262491
+
+
+ 660
+ 26.9467193
+
+
+ 661
+ 31.6496083
+
+
+ 662
+ 35.7389107
+
+
+ 663
+ 39.4061133
+
+
+ 664
+ 42.7599555
+
+
+ 665
+ 45.8692252
+
+
+ 666
+ 48.7807118
+
+
+ 667
+ 51.5279524
+
+
+ 668
+ 54.1359576
+
+
+ 669
+ 56.6239696
+
+
+ 670
+ 59.0071687
+
+
+ 671
+ 61.2977813
+
+
+ 672
+ 63.5058266
+
+
+ 673
+ 65.6396378
+
+
+ 674
+ 67.7062336
+
+
+ 675
+ 69.7115923
+
+
+ 676
+ 71.6608549
+
+
+ 677
+ 73.5584812
+
+
+ 678
+ 75.4083695
+
+
+ 679
+ 77.2139509
+
+
+ 680
+ 78.9782644
+
+
+ 685
+ 87.2664104
+
+
+ 690
+ 94.8329401
+
+
+ 695
+ 101.838827
+
+
+ 700
+ 108.392836
+
+
+ 705
+ 114.57254
+
+
+ 710
+ 120.435572
+
+
+ 715
+ 126.026137
+
+
+ 720
+ 131.379022
+
+
+ 721
+ 132.423636
+
+
+ 722
+ 133.460074
+
+
+ 723
+ 134.488525
+
+
+ 724
+ 135.509171
+
+
+ 725
+ 136.522187
+
+
+ 730
+ 141.478506
+
+
+ 735
+ 146.266974
+
+
+ 740
+ 150.903572
+
+
+ 745
+ 155.401892
+
+
+ 750
+ 159.773615
+
+
+ 755
+ 164.028864
+
+
+ 760
+ 168.17648
+
+
+ 765
+ 172.224239
+
+
+ 770
+ 176.179025
+
+
+ 775
+ 180.046963
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 37.397075
+
+
+ 660
+ 49.9938028
+
+
+ 661
+ 60.0018285
+
+
+ 662
+ 68.5642656
+
+
+ 663
+ 76.1701885
+
+
+ 664
+ 83.0827101
+
+
+ 665
+ 89.4627063
+
+
+ 666
+ 95.4170578
+
+
+ 667
+ 101.021057
+
+
+ 668
+ 106.330114
+
+
+ 669
+ 111.386409
+
+
+ 670
+ 116.222938
+
+
+ 671
+ 120.866085
+
+
+ 672
+ 125.337343
+
+
+ 673
+ 129.654497
+
+
+ 674
+ 133.832461
+
+
+ 675
+ 137.883889
+
+
+ 676
+ 141.819625
+
+
+ 677
+ 145.649047
+
+
+ 678
+ 149.380334
+
+
+ 679
+ 153.020663
+
+
+ 680
+ 156.576379
+
+
+ 685
+ 173.263839
+
+
+ 690
+ 188.479583
+
+
+ 695
+ 202.555545
+
+
+ 700
+ 215.714961
+
+
+ 705
+ 228.116505
+
+
+ 710
+ 239.877751
+
+
+ 715
+ 251.088691
+
+
+ 720
+ 261.820027
+
+
+ 721
+ 263.913936
+
+
+ 722
+ 265.991362
+
+
+ 723
+ 268.052688
+
+
+ 724
+ 270.098283
+
+
+ 725
+ 272.128502
+
+
+ 730
+ 282.060485
+
+
+ 735
+ 291.654441
+
+
+ 740
+ 300.942699
+
+
+ 745
+ 309.952744
+
+
+ 750
+ 318.708173
+
+
+ 755
+ 327.229422
+
+
+ 760
+ 335.534335
+
+
+ 765
+ 343.638598
+
+
+ 770
+ 351.556086
+
+
+ 775
+ 359.299147
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 68.7209357
+
+
+ 661
+ 84.8604067
+
+
+ 662
+ 98.3870431
+
+
+ 663
+ 110.26664
+
+
+ 664
+ 120.985344
+
+
+ 665
+ 130.828801
+
+
+ 666
+ 139.981773
+
+
+ 667
+ 148.57193
+
+
+ 668
+ 156.691863
+
+
+ 669
+ 164.411257
+
+
+ 670
+ 171.784118
+
+
+ 671
+ 178.853305
+
+
+ 672
+ 185.653512
+
+
+ 673
+ 192.213288
+
+
+ 674
+ 198.556465
+
+
+ 675
+ 204.703178
+
+
+ 676
+ 210.670627
+
+
+ 677
+ 216.473635
+
+
+ 678
+ 222.125091
+
+
+ 679
+ 227.636284
+
+
+ 680
+ 233.017165
+
+
+ 685
+ 258.245247
+
+
+ 690
+ 281.219159
+
+
+ 695
+ 302.453011
+
+
+ 700
+ 322.290912
+
+
+ 705
+ 340.976597
+
+
+ 710
+ 358.690184
+
+
+ 715
+ 375.569243
+
+
+ 720
+ 391.721667
+
+
+ 721
+ 394.872873
+
+
+ 722
+ 397.99913
+
+
+ 723
+ 401.101021
+
+
+ 724
+ 404.179107
+
+
+ 725
+ 407.233928
+
+
+ 730
+ 422.176598
+
+
+ 735
+ 436.608163
+
+
+ 740
+ 450.577736
+
+
+ 745
+ 464.127035
+
+
+ 750
+ 477.291853
+
+
+ 755
+ 490.103173
+
+
+ 760
+ 502.588031
+
+
+ 765
+ 514.770179
+
+
+ 770
+ 526.670623
+
+
+ 775
+ 538.308047
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 105.908119
+
+
+ 662
+ 125.041879
+
+
+ 663
+ 141.613606
+
+
+ 664
+ 156.439622
+
+
+ 665
+ 169.977343
+
+
+ 666
+ 182.513669
+
+
+ 667
+ 194.242583
+
+
+ 668
+ 205.302516
+
+
+ 669
+ 215.796351
+
+
+ 670
+ 225.803027
+
+
+ 671
+ 235.384683
+
+
+ 672
+ 244.591273
+
+
+ 673
+ 253.463671
+
+
+ 674
+ 262.035827
+
+
+ 675
+ 270.336303
+
+
+ 676
+ 278.389401
+
+
+ 677
+ 286.216003
+
+
+ 678
+ 293.834209
+
+
+ 679
+ 301.259829
+
+
+ 680
+ 308.506769
+
+
+ 685
+ 342.448735
+
+
+ 690
+ 373.317352
+
+
+ 695
+ 401.821546
+
+
+ 700
+ 428.433501
+
+
+ 705
+ 453.486466
+
+
+ 710
+ 477.22603
+
+
+ 715
+ 499.839368
+
+
+ 720
+ 521.473013
+
+
+ 721
+ 525.692919
+
+
+ 722
+ 529.879219
+
+
+ 723
+ 534.032704
+
+
+ 724
+ 538.154133
+
+
+ 725
+ 542.244237
+
+
+ 730
+ 562.248631
+
+
+ 735
+ 581.565329
+
+
+ 740
+ 600.260728
+
+
+ 745
+ 618.39118
+
+
+ 750
+ 636.005001
+
+
+ 755
+ 653.143989
+
+
+ 760
+ 669.844594
+
+
+ 765
+ 686.138827
+
+
+ 770
+ 702.054983
+
+
+ 775
+ 717.61822
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 148.266053
+
+
+ 663
+ 170.061468
+
+
+ 664
+ 189.364684
+
+
+ 665
+ 206.874513
+
+
+ 666
+ 223.013777
+
+
+ 667
+ 238.061389
+
+
+ 668
+ 252.212818
+
+
+ 669
+ 265.611344
+
+
+ 670
+ 278.365707
+
+
+ 671
+ 290.560746
+
+
+ 672
+ 302.264169
+
+
+ 673
+ 313.531032
+
+
+ 674
+ 324.406826
+
+
+ 675
+ 334.929648
+
+
+ 676
+ 345.131786
+
+
+ 677
+ 355.040885
+
+
+ 678
+ 364.680834
+
+
+ 679
+ 374.072441
+
+
+ 680
+ 383.233965
+
+
+ 685
+ 426.097025
+
+
+ 690
+ 465.025888
+
+
+ 695
+ 500.938599
+
+
+ 700
+ 534.443526
+
+
+ 705
+ 565.968448
+
+
+ 710
+ 595.827733
+
+
+ 715
+ 624.260434
+
+
+ 720
+ 651.453369
+
+
+ 721
+ 656.75686
+
+
+ 722
+ 662.017865
+
+
+ 723
+ 667.237389
+
+
+ 724
+ 672.4164
+
+
+ 725
+ 677.555824
+
+
+ 730
+ 702.689332
+
+
+ 735
+ 726.9544
+
+
+ 740
+ 750.435276
+
+
+ 745
+ 773.203405
+
+
+ 750
+ 795.320003
+
+
+ 755
+ 816.837995
+
+
+ 760
+ 837.803505
+
+
+ 765
+ 858.257022
+
+
+ 770
+ 878.234319
+
+
+ 775
+ 897.767186
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 195.376653
+
+
+ 664
+ 219.617214
+
+
+ 665
+ 241.436131
+
+
+ 666
+ 261.440414
+
+
+ 667
+ 280.01924
+
+
+ 668
+ 297.439841
+
+
+ 669
+ 313.895116
+
+
+ 670
+ 329.529708
+
+
+ 671
+ 344.455386
+
+
+ 672
+ 358.760641
+
+
+ 673
+ 372.516955
+
+
+ 674
+ 385.783056
+
+
+ 675
+ 398.607891
+
+
+ 676
+ 411.032767
+
+
+ 677
+ 423.092921
+
+
+ 678
+ 434.818703
+
+
+ 679
+ 446.236472
+
+
+ 680
+ 457.369297
+
+
+ 685
+ 509.396797
+
+
+ 690
+ 556.581997
+
+
+ 695
+ 600.068281
+
+
+ 700
+ 640.60937
+
+
+ 705
+ 678.733222
+
+
+ 710
+ 714.826699
+
+
+ 715
+ 749.18331
+
+
+ 720
+ 782.032004
+
+
+ 721
+ 788.437531
+
+
+ 722
+ 794.791435
+
+
+ 723
+ 801.094944
+
+
+ 724
+ 807.349239
+
+
+ 725
+ 813.555455
+
+
+ 730
+ 843.902187
+
+
+ 735
+ 873.194894
+
+
+ 740
+ 901.536326
+
+
+ 745
+ 929.013546
+
+
+ 750
+ 955.7011
+
+
+ 755
+ 981.663392
+
+
+ 760
+ 1006.95652
+
+
+ 765
+ 1031.62971
+
+
+ 770
+ 1055.72642
+
+
+ 775
+ 1079.28528
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 217.218076
+
+
+ 664
+ 246.977977
+
+
+ 665
+ 273.518829
+
+
+ 666
+ 297.702836
+
+
+ 667
+ 320.064693
+
+
+ 668
+ 340.963101
+
+
+ 669
+ 360.652554
+
+
+ 670
+ 379.321359
+
+
+ 671
+ 397.113488
+
+
+ 672
+ 414.141946
+
+
+ 673
+ 430.497364
+
+
+ 674
+ 446.253749
+
+
+ 675
+ 461.472467
+
+
+ 676
+ 476.205067
+
+
+ 677
+ 490.495357
+
+
+ 678
+ 504.380931
+
+
+ 679
+ 517.894345
+
+
+ 680
+ 531.064009
+
+
+ 685
+ 592.537868
+
+
+ 690
+ 648.207736
+
+
+ 695
+ 699.460801
+
+
+ 700
+ 747.206502
+
+
+ 705
+ 792.079352
+
+
+ 710
+ 834.542895
+
+
+ 715
+ 874.947991
+
+
+ 720
+ 913.567803
+
+
+ 721
+ 921.097476
+
+
+ 722
+ 928.566093
+
+
+ 723
+ 935.975116
+
+
+ 724
+ 943.325949
+
+
+ 725
+ 950.619942
+
+
+ 730
+ 986.281105
+
+
+ 735
+ 1020.6971
+
+
+ 740
+ 1053.9899
+
+
+ 745
+ 1086.26279
+
+
+ 750
+ 1117.60413
+
+
+ 755
+ 1148.09021
+
+
+ 760
+ 1177.78745
+
+
+ 765
+ 1206.75409
+
+
+ 770
+ 1235.04153
+
+
+ 775
+ 1262.69542
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 271.132898
+
+
+ 665
+ 302.908199
+
+
+ 666
+ 331.65299
+
+
+ 667
+ 358.0978
+
+
+ 668
+ 382.719692
+
+
+ 669
+ 405.850578
+
+
+ 670
+ 427.732417
+
+
+ 671
+ 448.548045
+
+
+ 672
+ 468.43962
+
+
+ 673
+ 487.520262
+
+
+ 674
+ 505.88174
+
+
+ 675
+ 523.599717
+
+
+ 676
+ 540.737452
+
+
+ 677
+ 557.348473
+
+
+ 678
+ 573.478552
+
+
+ 679
+ 589.16719
+
+
+ 680
+ 604.448763
+
+
+ 685
+ 675.692201
+
+
+ 690
+ 740.109177
+
+
+ 695
+ 799.35176
+
+
+ 700
+ 854.496858
+
+
+ 705
+ 906.292736
+
+
+ 710
+ 955.284338
+
+
+ 715
+ 1001.88313
+
+
+ 720
+ 1046.40884
+
+
+ 721
+ 1055.08852
+
+
+ 722
+ 1063.69738
+
+
+ 723
+ 1072.23712
+
+
+ 724
+ 1080.70938
+
+
+ 725
+ 1089.11574
+
+
+ 730
+ 1130.21004
+
+
+ 735
+ 1169.86169
+
+
+ 740
+ 1208.21274
+
+
+ 745
+ 1245.38334
+
+
+ 750
+ 1281.47622
+
+
+ 755
+ 1316.58002
+
+
+ 760
+ 1350.77185
+
+
+ 765
+ 1384.1193
+
+
+ 770
+ 1416.682
+
+
+ 775
+ 1448.51287
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 329.302578
+
+
+ 666
+ 363.07464
+
+
+ 667
+ 393.962182
+
+
+ 668
+ 422.598163
+
+
+ 669
+ 449.413188
+
+
+ 670
+ 474.715936
+
+
+ 671
+ 498.73663
+
+
+ 672
+ 521.652405
+
+
+ 673
+ 543.603015
+
+
+ 674
+ 564.701022
+
+
+ 675
+ 585.038675
+
+
+ 676
+ 604.692696
+
+
+ 677
+ 623.727716
+
+
+ 678
+ 642.198777
+
+
+ 679
+ 660.153222
+
+
+ 680
+ 677.632114
+
+
+ 685
+ 759.012723
+
+
+ 690
+ 832.475432
+
+
+ 695
+ 899.961319
+
+
+ 700
+ 962.728107
+
+
+ 705
+ 1021.64595
+
+
+ 710
+ 1077.3465
+
+
+ 715
+ 1130.30549
+
+
+ 720
+ 1180.89184
+
+
+ 721
+ 1190.75125
+
+
+ 722
+ 1200.52969
+
+
+ 723
+ 1210.22913
+
+
+ 724
+ 1219.85145
+
+
+ 725
+ 1229.39846
+
+
+ 730
+ 1276.06254
+
+
+ 735
+ 1321.07934
+
+
+ 740
+ 1364.61191
+
+
+ 745
+ 1406.79803
+
+
+ 750
+ 1447.75541
+
+
+ 755
+ 1487.58554
+
+
+ 760
+ 1526.37668
+
+
+ 765
+ 1564.20613
+
+
+ 770
+ 1601.14204
+
+
+ 775
+ 1637.2449
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 391.668794
+
+
+ 667
+ 427.434734
+
+
+ 668
+ 460.430733
+
+
+ 669
+ 491.215296
+
+
+ 670
+ 520.181195
+
+
+ 671
+ 547.617095
+
+
+ 672
+ 573.74253
+
+
+ 673
+ 598.72907
+
+
+ 674
+ 622.713824
+
+
+ 675
+ 645.80842
+
+
+ 676
+ 668.105173
+
+
+ 677
+ 689.68147
+
+
+ 678
+ 710.60294
+
+
+ 679
+ 730.925814
+
+
+ 680
+ 750.698711
+
+
+ 685
+ 842.631944
+
+
+ 690
+ 925.477516
+
+
+ 695
+ 1001.49322
+
+
+ 700
+ 1072.13279
+
+
+ 705
+ 1138.39745
+
+
+ 710
+ 1201.01157
+
+
+ 715
+ 1260.51927
+
+
+ 720
+ 1317.34159
+
+
+ 721
+ 1328.41442
+
+
+ 722
+ 1339.39572
+
+
+ 723
+ 1350.28771
+
+
+ 724
+ 1361.09254
+
+
+ 725
+ 1371.81227
+
+
+ 730
+ 1424.20116
+
+
+ 735
+ 1474.73014
+
+
+ 740
+ 1523.58427
+
+
+ 745
+ 1570.91982
+
+
+ 750
+ 1616.87016
+
+
+ 755
+ 1661.55022
+
+
+ 760
+ 1705.05988
+
+
+ 765
+ 1747.48654
+
+
+ 770
+ 1788.90728
+
+
+ 775
+ 1829.39042
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 403.289923
+
+
+ 667
+ 458.212023
+
+
+ 668
+ 495.983299
+
+
+ 669
+ 531.074954
+
+
+ 670
+ 563.987395
+
+
+ 671
+ 595.08231
+
+
+ 672
+ 624.631196
+
+
+ 673
+ 652.844013
+
+
+ 674
+ 679.887108
+
+
+ 675
+ 705.894931
+
+
+ 676
+ 730.977994
+
+
+ 677
+ 755.228444
+
+
+ 678
+ 778.72407
+
+
+ 679
+ 801.531254
+
+
+ 680
+ 823.707185
+
+
+ 685
+ 926.660347
+
+
+ 690
+ 1019.26703
+
+
+ 695
+ 1104.13366
+
+
+ 700
+ 1182.92731
+
+
+ 705
+ 1256.79071
+
+
+ 710
+ 1326.54768
+
+
+ 715
+ 1392.81536
+
+
+ 720
+ 1456.07023
+
+
+ 721
+ 1468.39425
+
+
+ 722
+ 1480.6157
+
+
+ 723
+ 1492.73709
+
+
+ 724
+ 1504.76085
+
+
+ 725
+ 1516.68928
+
+
+ 730
+ 1574.9769
+
+
+ 735
+ 1631.18304
+
+
+ 740
+ 1685.51594
+
+
+ 745
+ 1738.15128
+
+
+ 750
+ 1789.23887
+
+
+ 755
+ 1838.90772
+
+
+ 760
+ 1887.26985
+
+
+ 765
+ 1934.42326
+
+
+ 770
+ 1980.4543
+
+
+ 775
+ 2025.43948
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 403.289923
+
+
+ 667
+ 472.338783
+
+
+ 668
+ 528.942387
+
+
+ 669
+ 568.743451
+
+
+ 670
+ 605.935787
+
+
+ 671
+ 640.973667
+
+
+ 672
+ 674.193078
+
+
+ 673
+ 705.850813
+
+
+ 674
+ 736.148378
+
+
+ 675
+ 765.247345
+
+
+ 676
+ 793.279625
+
+
+ 677
+ 820.354574
+
+
+ 678
+ 846.564051
+
+
+ 679
+ 871.986099
+
+
+ 680
+ 896.687694
+
+
+ 685
+ 1011.18452
+
+
+ 690
+ 1113.97462
+
+
+ 695
+ 1208.04999
+
+
+ 700
+ 1295.31081
+
+
+ 705
+ 1377.05317
+
+
+ 710
+ 1454.20795
+
+
+ 715
+ 1527.47048
+
+
+ 720
+ 1597.37641
+
+
+ 721
+ 1610.99362
+
+
+ 722
+ 1624.4967
+
+
+ 723
+ 1637.88845
+
+
+ 724
+ 1651.1716
+
+
+ 725
+ 1664.34874
+
+
+ 730
+ 1728.72844
+
+
+ 735
+ 1790.79517
+
+
+ 740
+ 1850.78164
+
+
+ 745
+ 1908.88397
+
+
+ 750
+ 1965.26927
+
+
+ 755
+ 2020.08135
+
+
+ 760
+ 2073.44495
+
+
+ 765
+ 2125.46919
+
+
+ 770
+ 2176.25012
+
+
+ 775
+ 2225.87285
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 403.289923
+
+
+ 667
+ 472.338783
+
+
+ 668
+ 544.932404
+
+
+ 669
+ 603.892531
+
+
+ 670
+ 645.759721
+
+
+ 671
+ 685.073022
+
+
+ 672
+ 722.249592
+
+
+ 673
+ 757.604053
+
+
+ 674
+ 791.380647
+
+
+ 675
+ 823.773486
+
+
+ 676
+ 854.939872
+
+
+ 677
+ 885.009386
+
+
+ 678
+ 914.09028
+
+
+ 679
+ 942.274094
+
+
+ 680
+ 969.639055
+
+
+ 685
+ 1096.26504
+
+
+ 690
+ 1209.7083
+
+
+ 695
+ 1313.38925
+
+
+ 700
+ 1409.46389
+
+
+ 705
+ 1499.39508
+
+
+ 710
+ 1584.22938
+
+
+ 715
+ 1664.74619
+
+
+ 720
+ 1741.54443
+
+
+ 721
+ 1756.50119
+
+
+ 722
+ 1771.33167
+
+
+ 723
+ 1786.039
+
+
+ 724
+ 1800.6262
+
+
+ 725
+ 1815.09618
+
+
+ 730
+ 1885.78135
+
+
+ 735
+ 1953.91106
+
+
+ 740
+ 2019.74394
+
+
+ 745
+ 2083.49771
+
+
+ 750
+ 2145.35774
+
+
+ 755
+ 2205.48339
+
+
+ 760
+ 2264.01284
+
+
+ 765
+ 2321.06684
+
+
+ 770
+ 2376.75165
+
+
+ 775
+ 2431.16136
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 403.289923
+
+
+ 667
+ 472.338783
+
+
+ 668
+ 544.932404
+
+
+ 669
+ 620.905455
+
+
+ 670
+ 683.111897
+
+
+ 671
+ 727.092566
+
+
+ 672
+ 768.56056
+
+
+ 673
+ 807.902884
+
+
+ 674
+ 845.416351
+
+
+ 675
+ 881.334523
+
+
+ 676
+ 915.845116
+
+
+ 677
+ 949.101687
+
+
+ 678
+ 981.231751
+
+
+ 679
+ 1012.34257
+
+
+ 680
+ 1042.5254
+
+
+ 685
+ 1181.93397
+
+
+ 690
+ 1306.55141
+
+
+ 695
+ 1420.27647
+
+
+ 700
+ 1525.54709
+
+
+ 705
+ 1624.00819
+
+
+ 710
+ 1716.83176
+
+
+ 715
+ 1804.8878
+
+
+ 720
+ 1888.8432
+
+
+ 721
+ 1905.19038
+
+
+ 722
+ 1921.39848
+
+
+ 723
+ 1937.47099
+
+
+ 724
+ 1953.41127
+
+
+ 725
+ 1969.22252
+
+
+ 730
+ 2046.44717
+
+
+ 735
+ 2120.86178
+
+
+ 740
+ 2192.75246
+
+
+ 745
+ 2262.35984
+
+
+ 750
+ 2329.88856
+
+
+ 755
+ 2395.51443
+
+
+ 760
+ 2459.38978
+
+
+ 765
+ 2521.64763
+
+
+ 770
+ 2582.40497
+
+
+ 775
+ 2641.76534
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 403.289923
+
+
+ 667
+ 472.338783
+
+
+ 668
+ 544.932404
+
+
+ 669
+ 620.905455
+
+
+ 670
+ 700.113795
+
+
+ 671
+ 766.661931
+
+
+ 672
+ 812.8138
+
+
+ 673
+ 856.482359
+
+
+ 674
+ 898.029948
+
+
+ 675
+ 937.738527
+
+
+ 676
+ 975.83262
+
+
+ 677
+ 1012.49447
+
+
+ 678
+ 1047.87443
+
+
+ 679
+ 1082.09823
+
+
+ 680
+ 1115.27231
+
+
+ 685
+ 1268.19207
+
+
+ 690
+ 1404.56039
+
+
+ 695
+ 1528.81284
+
+
+ 700
+ 1643.69932
+
+
+ 705
+ 1751.06432
+
+
+ 710
+ 1852.21625
+
+
+ 715
+ 1948.12315
+
+
+ 720
+ 2039.52509
+
+
+ 721
+ 2057.31825
+
+
+ 722
+ 2074.95882
+
+
+ 723
+ 2092.45069
+
+
+ 724
+ 2109.79754
+
+
+ 725
+ 2127.00291
+
+
+ 730
+ 2211.02243
+
+
+ 735
+ 2291.964
+
+
+ 740
+ 2370.14298
+
+
+ 745
+ 2445.82431
+
+
+ 750
+ 2519.23308
+
+
+ 755
+ 2590.56251
+
+
+ 760
+ 2659.97987
+
+
+ 765
+ 2727.63115
+
+
+ 770
+ 2793.64466
+
+
+ 775
+ 2858.13388
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 403.289923
+
+
+ 667
+ 472.338783
+
+
+ 668
+ 544.932404
+
+
+ 669
+ 620.905455
+
+
+ 670
+ 700.113795
+
+
+ 671
+ 782.430299
+
+
+ 672
+ 854.611931
+
+
+ 673
+ 903.002628
+
+
+ 674
+ 948.928838
+
+
+ 675
+ 992.732659
+
+
+ 676
+ 1034.68368
+
+
+ 677
+ 1074.99885
+
+
+ 678
+ 1113.85579
+
+
+ 679
+ 1151.40215
+
+
+ 680
+ 1187.76222
+
+
+ 685
+ 1355.00556
+
+
+ 690
+ 1503.76229
+
+
+ 695
+ 1639.07352
+
+
+ 700
+ 1764.03599
+
+
+ 705
+ 1880.71367
+
+
+ 710
+ 1990.56396
+
+
+ 715
+ 2094.66127
+
+
+ 720
+ 2193.8247
+
+
+ 721
+ 2213.12427
+
+
+ 722
+ 2232.25698
+
+
+ 723
+ 2251.22709
+
+
+ 724
+ 2270.03868
+
+
+ 725
+ 2288.69565
+
+
+ 730
+ 2379.78754
+
+
+ 735
+ 2467.51894
+
+
+ 740
+ 2552.23641
+
+
+ 745
+ 2634.23075
+
+
+ 750
+ 2713.74881
+
+
+ 755
+ 2791.00225
+
+
+ 760
+ 2866.1742
+
+
+ 765
+ 2939.42435
+
+
+ 770
+ 3010.89297
+
+
+ 775
+ 3080.70405
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 403.289923
+
+
+ 667
+ 472.338783
+
+
+ 668
+ 544.932404
+
+
+ 669
+ 620.905455
+
+
+ 670
+ 700.113795
+
+
+ 671
+ 782.430299
+
+
+ 672
+ 867.741753
+
+
+ 673
+ 947.035318
+
+
+ 674
+ 997.742078
+
+
+ 675
+ 1045.9936
+
+
+ 676
+ 1092.11537
+
+
+ 677
+ 1136.36673
+
+
+ 678
+ 1178.95831
+
+
+ 679
+ 1220.06396
+
+
+ 680
+ 1259.82912
+
+
+ 685
+ 1442.3024
+
+
+ 690
+ 1604.15181
+
+
+ 695
+ 1751.10532
+
+
+ 700
+ 1886.64693
+
+
+ 705
+ 2013.08307
+
+
+ 710
+ 2132.0343
+
+
+ 715
+ 2244.69086
+
+
+ 720
+ 2351.95745
+
+
+ 721
+ 2372.82895
+
+
+ 722
+ 2393.51845
+
+
+ 723
+ 2414.03064
+
+
+ 724
+ 2434.37
+
+
+ 725
+ 2454.54082
+
+
+ 730
+ 2553.00557
+
+
+ 735
+ 2647.81122
+
+
+ 740
+ 2739.3377
+
+
+ 745
+ 2827.90344
+
+
+ 750
+ 2913.77842
+
+
+ 755
+ 2997.19393
+
+
+ 760
+ 3078.34993
+
+
+ 765
+ 3157.42064
+
+
+ 770
+ 3234.55899
+
+
+ 775
+ 3309.9001
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 403.289923
+
+
+ 667
+ 472.338783
+
+
+ 668
+ 544.932404
+
+
+ 669
+ 620.905455
+
+
+ 670
+ 700.113795
+
+
+ 671
+ 782.430299
+
+
+ 672
+ 867.741753
+
+
+ 673
+ 955.946484
+
+
+ 674
+ 1044.00619
+
+
+ 675
+ 1097.1157
+
+
+ 676
+ 1147.77035
+
+
+ 677
+ 1196.28204
+
+
+ 678
+ 1242.9017
+
+
+ 679
+ 1287.83484
+
+
+ 680
+ 1331.25223
+
+
+ 685
+ 1529.96802
+
+
+ 690
+ 1705.68807
+
+
+ 695
+ 1864.92398
+
+
+ 700
+ 2011.59416
+
+
+ 705
+ 2148.27389
+
+
+ 710
+ 2276.76314
+
+
+ 715
+ 2398.37862
+
+
+ 720
+ 2514.11807
+
+
+ 721
+ 2536.63233
+
+
+ 722
+ 2558.94852
+
+
+ 723
+ 2581.07176
+
+
+ 724
+ 2603.00699
+
+
+ 725
+ 2624.75891
+
+
+ 730
+ 2730.9209
+
+
+ 735
+ 2833.10759
+
+
+ 740
+ 2931.73468
+
+
+ 745
+ 3027.15013
+
+
+ 750
+ 3119.64862
+
+
+ 755
+ 3209.48239
+
+
+ 760
+ 3296.86925
+
+
+ 765
+ 3381.99889
+
+
+ 770
+ 3465.03768
+
+
+ 775
+ 3546.13251
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 403.289923
+
+
+ 667
+ 472.338783
+
+
+ 668
+ 544.932404
+
+
+ 669
+ 620.905455
+
+
+ 670
+ 700.113795
+
+
+ 671
+ 782.430299
+
+
+ 672
+ 867.741753
+
+
+ 673
+ 955.946484
+
+
+ 674
+ 1046.95252
+
+
+ 675
+ 1140.67616
+
+
+ 676
+ 1201.20441
+
+
+ 677
+ 1254.34992
+
+
+ 678
+ 1305.33346
+
+
+ 679
+ 1354.39919
+
+
+ 680
+ 1401.7485
+
+
+ 685
+ 1617.84035
+
+
+ 690
+ 1808.2909
+
+
+ 695
+ 1980.51117
+
+
+ 700
+ 2138.90932
+
+
+ 705
+ 2286.3599
+
+
+ 710
+ 2424.86085
+
+
+ 715
+ 2555.86751
+
+
+ 720
+ 2680.47892
+
+
+ 721
+ 2704.71236
+
+
+ 722
+ 2728.7306
+
+
+ 723
+ 2752.53926
+
+
+ 724
+ 2776.14375
+
+
+ 725
+ 2799.54921
+
+
+ 730
+ 2913.75777
+
+
+ 735
+ 3023.65555
+
+
+ 740
+ 3129.6967
+
+
+ 745
+ 3232.26082
+
+
+ 750
+ 3331.66903
+
+
+ 755
+ 3428.1959
+
+
+ 760
+ 3522.07831
+
+
+ 765
+ 3613.52241
+
+
+ 770
+ 3702.70884
+
+
+ 775
+ 3789.797
+
+
+
+
+
+ 657
+ 0
+
+
+ 658
+ 14.9366638
+
+
+ 659
+ 42.2472651
+
+
+ 660
+ 77.6131819
+
+
+ 661
+ 119.493311
+
+
+ 662
+ 166.996978
+
+
+ 663
+ 219.523229
+
+
+ 664
+ 276.630885
+
+
+ 665
+ 337.978121
+
+
+ 666
+ 403.289923
+
+
+ 667
+ 472.338783
+
+
+ 668
+ 544.932404
+
+
+ 669
+ 620.905455
+
+
+ 670
+ 700.113795
+
+
+ 671
+ 782.430299
+
+
+ 672
+ 867.741753
+
+
+ 673
+ 955.946484
+
+
+ 674
+ 1046.95252
+
+
+ 675
+ 1140.67616
+
+
+ 676
+ 1237.04075
+
+
+ 677
+ 1310.08344
+
+
+ 678
+ 1365.81738
+
+
+ 679
+ 1419.36451
+
+
+ 680
+ 1470.96367
+
+
+ 685
+ 1705.70414
+
+
+ 690
+ 1911.83657
+
+
+ 695
+ 2097.81114
+
+
+ 700
+ 2268.59076
+
+
+ 705
+ 2427.38471
+
+
+ 710
+ 2576.4101
+
+
+ 715
+ 2717.27465
+
+
+ 720
+ 2851.18817
+
+
+ 721
+ 2877.22305
+
+
+ 722
+ 2903.02445
+
+
+ 723
+ 2928.59855
+
+
+ 724
+ 2953.95125
+
+
+ 725
+ 2979.08819
+
+
+ 730
+ 3101.71871
+
+
+ 735
+ 3219.68188
+
+
+ 740
+ 3333.47325
+
+
+ 745
+ 3443.50641
+
+
+ 750
+ 3550.13083
+
+
+ 755
+ 3653.64494
+
+
+ 760
+ 3754.30604
+
+
+ 765
+ 3852.33778
+
+
+ 770
+ 3947.93602
+
+
+ 775
+ 4041.27348
+
+
+
+
diff --git a/cda-etl/data/sample-data/SWT/Ratings/KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production.xml b/cda-etl/data/sample-data/SWT/Ratings/KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production.xml
new file mode 100644
index 000000000..102a55513
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Ratings/KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production.xml
@@ -0,0 +1,14938 @@
+
+
+
+ Opening-Spillway_Gates,Elev;Flow-Spillway_Gates
+ Standard
+
+
+ Opening-Spillway_Gates
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Elev
+ LINEAR
+ NEAREST
+ NEAREST
+
+
+ Flow-Spillway_Gates
+
+
+
+ KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production
+ Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard
+ KEYS
+ Production
+
+ PREVIOUS
+ NEAREST
+ PREVIOUS
+ true
+ false
+ false
+ false
+
+ 4444444444
+ 4444444444
+
+ 2222234564
+ Keystone Lake Spillway (Tainter) Gate Discharge Production Rating
+
+
+ KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft,ft;cfs
+ 2005-01-11T00:00:00-06:00
+ 2012-07-11T09:37:23-05:00
+ true
+
+
+
+
+ 719
+ 0
+
+
+ 754.44
+ 0
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 160
+
+
+ 722
+ 190
+
+
+ 723
+ 210
+
+
+ 724
+ 230
+
+
+ 725
+ 250
+
+
+ 726
+ 270
+
+
+ 727
+ 280
+
+
+ 728
+ 300
+
+
+ 729
+ 310
+
+
+ 730
+ 330
+
+
+ 731
+ 340
+
+
+ 732
+ 350
+
+
+ 733
+ 360
+
+
+ 734
+ 380
+
+
+ 735
+ 390
+
+
+ 736
+ 400
+
+
+ 737
+ 410
+
+
+ 738
+ 420
+
+
+ 739
+ 430
+
+
+ 740
+ 440
+
+
+ 741
+ 450
+
+
+ 742
+ 460
+
+
+ 743
+ 470
+
+
+ 744
+ 480
+
+
+ 745
+ 490
+
+
+ 746
+ 500
+
+
+ 747
+ 510
+
+
+ 748
+ 520
+
+
+ 749
+ 520
+
+
+ 750
+ 530
+
+
+ 751
+ 540
+
+
+ 752
+ 550
+
+
+ 753
+ 560
+
+
+ 754
+ 570
+
+
+ 754.44
+ 570
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 310
+
+
+ 722
+ 360
+
+
+ 723
+ 410
+
+
+ 724
+ 450
+
+
+ 725
+ 490
+
+
+ 726
+ 520
+
+
+ 727
+ 560
+
+
+ 728
+ 590
+
+
+ 729
+ 620
+
+
+ 730
+ 640
+
+
+ 731
+ 670
+
+
+ 732
+ 700
+
+
+ 733
+ 720
+
+
+ 734
+ 750
+
+
+ 735
+ 770
+
+
+ 736
+ 790
+
+
+ 737
+ 820
+
+
+ 738
+ 840
+
+
+ 739
+ 860
+
+
+ 740
+ 880
+
+
+ 741
+ 900
+
+
+ 742
+ 920
+
+
+ 743
+ 940
+
+
+ 744
+ 960
+
+
+ 745
+ 980
+
+
+ 746
+ 990
+
+
+ 747
+ 1010
+
+
+ 748
+ 1030
+
+
+ 749
+ 1050
+
+
+ 750
+ 1060
+
+
+ 751
+ 1080
+
+
+ 752
+ 1100
+
+
+ 753
+ 1110
+
+
+ 754
+ 1130
+
+
+ 754.87
+ 1140
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 520
+
+
+ 723
+ 590
+
+
+ 724
+ 660
+
+
+ 725
+ 720
+
+
+ 726
+ 770
+
+
+ 727
+ 820
+
+
+ 728
+ 870
+
+
+ 729
+ 920
+
+
+ 730
+ 960
+
+
+ 731
+ 1000
+
+
+ 732
+ 1040
+
+
+ 733
+ 1080
+
+
+ 734
+ 1120
+
+
+ 735
+ 1150
+
+
+ 736
+ 1190
+
+
+ 737
+ 1220
+
+
+ 738
+ 1260
+
+
+ 739
+ 1290
+
+
+ 740
+ 1320
+
+
+ 741
+ 1350
+
+
+ 742
+ 1380
+
+
+ 743
+ 1410
+
+
+ 744
+ 1440
+
+
+ 745
+ 1470
+
+
+ 746
+ 1490
+
+
+ 747
+ 1520
+
+
+ 748
+ 1550
+
+
+ 749
+ 1570
+
+
+ 750
+ 1600
+
+
+ 751
+ 1620
+
+
+ 752
+ 1650
+
+
+ 753
+ 1670
+
+
+ 754
+ 1700
+
+
+ 755
+ 1720
+
+
+ 755.29
+ 1730
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 770
+
+
+ 724
+ 860
+
+
+ 725
+ 940
+
+
+ 726
+ 1010
+
+
+ 727
+ 1080
+
+
+ 728
+ 1150
+
+
+ 729
+ 1210
+
+
+ 730
+ 1270
+
+
+ 731
+ 1330
+
+
+ 732
+ 1380
+
+
+ 733
+ 1430
+
+
+ 734
+ 1480
+
+
+ 735
+ 1530
+
+
+ 736
+ 1580
+
+
+ 737
+ 1620
+
+
+ 738
+ 1670
+
+
+ 739
+ 1710
+
+
+ 740
+ 1750
+
+
+ 741
+ 1790
+
+
+ 742
+ 1830
+
+
+ 743
+ 1870
+
+
+ 744
+ 1910
+
+
+ 745
+ 1950
+
+
+ 746
+ 1990
+
+
+ 747
+ 2020
+
+
+ 748
+ 2060
+
+
+ 749
+ 2090
+
+
+ 750
+ 2130
+
+
+ 751
+ 2160
+
+
+ 752
+ 2200
+
+
+ 753
+ 2230
+
+
+ 754
+ 2260
+
+
+ 755
+ 2290
+
+
+ 755.71
+ 2320
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 930
+
+
+ 724
+ 1050
+
+
+ 725
+ 1150
+
+
+ 726
+ 1250
+
+
+ 727
+ 1340
+
+
+ 728
+ 1420
+
+
+ 729
+ 1500
+
+
+ 730
+ 1580
+
+
+ 731
+ 1650
+
+
+ 732
+ 1720
+
+
+ 733
+ 1780
+
+
+ 734
+ 1840
+
+
+ 735
+ 1910
+
+
+ 736
+ 1970
+
+
+ 737
+ 2020
+
+
+ 738
+ 2080
+
+
+ 739
+ 2130
+
+
+ 740
+ 2190
+
+
+ 741
+ 2240
+
+
+ 742
+ 2290
+
+
+ 743
+ 2340
+
+
+ 744
+ 2390
+
+
+ 745
+ 2440
+
+
+ 746
+ 2480
+
+
+ 747
+ 2530
+
+
+ 748
+ 2570
+
+
+ 749
+ 2620
+
+
+ 750
+ 2660
+
+
+ 751
+ 2700
+
+
+ 752
+ 2750
+
+
+ 753
+ 2790
+
+
+ 754
+ 2830
+
+
+ 755
+ 2870
+
+
+ 756
+ 2910
+
+
+ 756.11
+ 2910
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1230
+
+
+ 725
+ 1360
+
+
+ 726
+ 1480
+
+
+ 727
+ 1590
+
+
+ 728
+ 1690
+
+
+ 729
+ 1780
+
+
+ 730
+ 1880
+
+
+ 731
+ 1960
+
+
+ 732
+ 2050
+
+
+ 733
+ 2130
+
+
+ 734
+ 2200
+
+
+ 735
+ 2280
+
+
+ 736
+ 2350
+
+
+ 737
+ 2420
+
+
+ 738
+ 2490
+
+
+ 739
+ 2560
+
+
+ 740
+ 2620
+
+
+ 741
+ 2680
+
+
+ 742
+ 2750
+
+
+ 743
+ 2810
+
+
+ 744
+ 2870
+
+
+ 745
+ 2920
+
+
+ 746
+ 2980
+
+
+ 747
+ 3040
+
+
+ 748
+ 3090
+
+
+ 749
+ 3140
+
+
+ 750
+ 3200
+
+
+ 751
+ 3250
+
+
+ 752
+ 3300
+
+
+ 753
+ 3350
+
+
+ 754
+ 3400
+
+
+ 755
+ 3450
+
+
+ 756
+ 3500
+
+
+ 756.51
+ 3520
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1390
+
+
+ 725
+ 1550
+
+
+ 726
+ 1690
+
+
+ 727
+ 1820
+
+
+ 728
+ 1940
+
+
+ 729
+ 2060
+
+
+ 730
+ 2170
+
+
+ 731
+ 2270
+
+
+ 732
+ 2370
+
+
+ 733
+ 2470
+
+
+ 734
+ 2560
+
+
+ 735
+ 2640
+
+
+ 736
+ 2730
+
+
+ 737
+ 2810
+
+
+ 738
+ 2890
+
+
+ 739
+ 2970
+
+
+ 740
+ 3050
+
+
+ 741
+ 3120
+
+
+ 742
+ 3200
+
+
+ 743
+ 3270
+
+
+ 744
+ 3340
+
+
+ 745
+ 3400
+
+
+ 746
+ 3470
+
+
+ 747
+ 3540
+
+
+ 748
+ 3600
+
+
+ 749
+ 3660
+
+
+ 750
+ 3730
+
+
+ 751
+ 3790
+
+
+ 752
+ 3850
+
+
+ 753
+ 3910
+
+
+ 754
+ 3970
+
+
+ 755
+ 4020
+
+
+ 756
+ 4080
+
+
+ 756.91
+ 4130
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1730
+
+
+ 726
+ 1900
+
+
+ 727
+ 2050
+
+
+ 728
+ 2190
+
+
+ 729
+ 2330
+
+
+ 730
+ 2450
+
+
+ 731
+ 2570
+
+
+ 732
+ 2690
+
+
+ 733
+ 2800
+
+
+ 734
+ 2910
+
+
+ 735
+ 3010
+
+
+ 736
+ 3110
+
+
+ 737
+ 3200
+
+
+ 738
+ 3300
+
+
+ 739
+ 3390
+
+
+ 740
+ 3470
+
+
+ 741
+ 3560
+
+
+ 742
+ 3640
+
+
+ 743
+ 3730
+
+
+ 744
+ 3810
+
+
+ 745
+ 3890
+
+
+ 746
+ 3960
+
+
+ 747
+ 4040
+
+
+ 748
+ 4110
+
+
+ 749
+ 4190
+
+
+ 750
+ 4260
+
+
+ 751
+ 4330
+
+
+ 752
+ 4400
+
+
+ 753
+ 4460
+
+
+ 754
+ 4530
+
+
+ 755
+ 4600
+
+
+ 756
+ 4660
+
+
+ 757
+ 4730
+
+
+ 757.3
+ 4750
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2100
+
+
+ 727
+ 2270
+
+
+ 728
+ 2440
+
+
+ 729
+ 2590
+
+
+ 730
+ 2740
+
+
+ 731
+ 2870
+
+
+ 732
+ 3000
+
+
+ 733
+ 3130
+
+
+ 734
+ 3250
+
+
+ 735
+ 3370
+
+
+ 736
+ 3480
+
+
+ 737
+ 3590
+
+
+ 738
+ 3700
+
+
+ 739
+ 3800
+
+
+ 740
+ 3900
+
+
+ 741
+ 4000
+
+
+ 742
+ 4090
+
+
+ 743
+ 4190
+
+
+ 744
+ 4280
+
+
+ 745
+ 4370
+
+
+ 746
+ 4450
+
+
+ 747
+ 4540
+
+
+ 748
+ 4630
+
+
+ 749
+ 4710
+
+
+ 750
+ 4790
+
+
+ 751
+ 4870
+
+
+ 752
+ 4950
+
+
+ 753
+ 5030
+
+
+ 754
+ 5100
+
+
+ 755
+ 5180
+
+
+ 756
+ 5250
+
+
+ 757
+ 5320
+
+
+ 757.68
+ 5370
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9050
+
+
+ 737
+ 9450
+
+
+ 738
+ 9820
+
+
+ 739
+ 10190
+
+
+ 740
+ 10540
+
+
+ 741
+ 10880
+
+
+ 742
+ 11210
+
+
+ 743
+ 11530
+
+
+ 744
+ 11840
+
+
+ 745
+ 12140
+
+
+ 746
+ 12440
+
+
+ 747
+ 12730
+
+
+ 748
+ 13010
+
+
+ 749
+ 13290
+
+
+ 750
+ 13560
+
+
+ 751
+ 13830
+
+
+ 752
+ 14090
+
+
+ 753
+ 14340
+
+
+ 754
+ 14590
+
+
+ 755
+ 14840
+
+
+ 756
+ 15080
+
+
+ 757
+ 15320
+
+
+ 758
+ 15560
+
+
+ 759
+ 15790
+
+
+ 760
+ 16020
+
+
+ 761
+ 16250
+
+
+ 762
+ 16470
+
+
+ 763
+ 16690
+
+
+ 763.17
+ 16730
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10030
+
+
+ 738
+ 10450
+
+
+ 739
+ 10850
+
+
+ 740
+ 11240
+
+
+ 741
+ 11610
+
+
+ 742
+ 11970
+
+
+ 743
+ 12330
+
+
+ 744
+ 12670
+
+
+ 745
+ 13000
+
+
+ 746
+ 13330
+
+
+ 747
+ 13640
+
+
+ 748
+ 13950
+
+
+ 749
+ 14260
+
+
+ 750
+ 14560
+
+
+ 751
+ 14850
+
+
+ 752
+ 15130
+
+
+ 753
+ 15410
+
+
+ 754
+ 15690
+
+
+ 755
+ 15960
+
+
+ 756
+ 16220
+
+
+ 757
+ 16490
+
+
+ 758
+ 16740
+
+
+ 759
+ 17000
+
+
+ 760
+ 17250
+
+
+ 761
+ 17490
+
+
+ 762
+ 17740
+
+
+ 763
+ 17980
+
+
+ 763.7
+ 18140
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11050
+
+
+ 739
+ 11490
+
+
+ 740
+ 11920
+
+
+ 741
+ 12330
+
+
+ 742
+ 12730
+
+
+ 743
+ 13110
+
+
+ 744
+ 13490
+
+
+ 745
+ 13850
+
+
+ 746
+ 14210
+
+
+ 747
+ 14550
+
+
+ 748
+ 14890
+
+
+ 749
+ 15220
+
+
+ 750
+ 15550
+
+
+ 751
+ 15870
+
+
+ 752
+ 16180
+
+
+ 753
+ 16480
+
+
+ 754
+ 16780
+
+
+ 755
+ 17080
+
+
+ 756
+ 17370
+
+
+ 757
+ 17650
+
+
+ 758
+ 17930
+
+
+ 759
+ 18210
+
+
+ 760
+ 18480
+
+
+ 761
+ 18750
+
+
+ 762
+ 19010
+
+
+ 763
+ 19270
+
+
+ 764
+ 19530
+
+
+ 764.21
+ 19580
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12080
+
+
+ 740
+ 12550
+
+
+ 741
+ 13000
+
+
+ 742
+ 13430
+
+
+ 743
+ 13850
+
+
+ 744
+ 14260
+
+
+ 745
+ 14660
+
+
+ 746
+ 15040
+
+
+ 747
+ 15420
+
+
+ 748
+ 15790
+
+
+ 749
+ 16150
+
+
+ 750
+ 16500
+
+
+ 751
+ 16840
+
+
+ 752
+ 17180
+
+
+ 753
+ 17510
+
+
+ 754
+ 17830
+
+
+ 755
+ 18150
+
+
+ 756
+ 18460
+
+
+ 757
+ 18770
+
+
+ 758
+ 19080
+
+
+ 759
+ 19370
+
+
+ 760
+ 19670
+
+
+ 761
+ 19960
+
+
+ 762
+ 20240
+
+
+ 763
+ 20520
+
+
+ 764
+ 20800
+
+
+ 764.69
+ 20990
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13190
+
+
+ 741
+ 13680
+
+
+ 742
+ 14150
+
+
+ 743
+ 14610
+
+
+ 744
+ 15050
+
+
+ 745
+ 15480
+
+
+ 746
+ 15900
+
+
+ 747
+ 16310
+
+
+ 748
+ 16710
+
+
+ 749
+ 17100
+
+
+ 750
+ 17480
+
+
+ 751
+ 17850
+
+
+ 752
+ 18210
+
+
+ 753
+ 18570
+
+
+ 754
+ 18920
+
+
+ 755
+ 19270
+
+
+ 756
+ 19610
+
+
+ 757
+ 19940
+
+
+ 758
+ 20260
+
+
+ 759
+ 20590
+
+
+ 760
+ 20900
+
+
+ 761
+ 21220
+
+
+ 762
+ 21520
+
+
+ 763
+ 21830
+
+
+ 764
+ 22130
+
+
+ 765
+ 22420
+
+
+ 765.15
+ 22470
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14350
+
+
+ 742
+ 14860
+
+
+ 743
+ 15360
+
+
+ 744
+ 15840
+
+
+ 745
+ 16310
+
+
+ 746
+ 16760
+
+
+ 747
+ 17200
+
+
+ 748
+ 17630
+
+
+ 749
+ 18050
+
+
+ 750
+ 18460
+
+
+ 751
+ 18860
+
+
+ 752
+ 19260
+
+
+ 753
+ 19640
+
+
+ 754
+ 20020
+
+
+ 755
+ 20390
+
+
+ 756
+ 20760
+
+
+ 757
+ 21110
+
+
+ 758
+ 21470
+
+
+ 759
+ 21810
+
+
+ 760
+ 22150
+
+
+ 761
+ 22490
+
+
+ 762
+ 22820
+
+
+ 763
+ 23150
+
+
+ 764
+ 23470
+
+
+ 765
+ 23790
+
+
+ 765.59
+ 23970
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16040
+
+
+ 744
+ 16560
+
+
+ 745
+ 17060
+
+
+ 746
+ 17550
+
+
+ 747
+ 18020
+
+
+ 748
+ 18490
+
+
+ 749
+ 18940
+
+
+ 750
+ 19380
+
+
+ 751
+ 19810
+
+
+ 752
+ 20230
+
+
+ 753
+ 20650
+
+
+ 754
+ 21050
+
+
+ 755
+ 21450
+
+
+ 756
+ 21840
+
+
+ 757
+ 22220
+
+
+ 758
+ 22600
+
+
+ 759
+ 22970
+
+
+ 760
+ 23330
+
+
+ 761
+ 23690
+
+
+ 762
+ 24050
+
+
+ 763
+ 24400
+
+
+ 764
+ 24740
+
+
+ 765
+ 25080
+
+
+ 766
+ 25410
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17310
+
+
+ 745
+ 17850
+
+
+ 746
+ 18370
+
+
+ 747
+ 18890
+
+
+ 748
+ 19380
+
+
+ 749
+ 19870
+
+
+ 750
+ 20340
+
+
+ 751
+ 20800
+
+
+ 752
+ 21260
+
+
+ 753
+ 21700
+
+
+ 754
+ 22140
+
+
+ 755
+ 22560
+
+
+ 756
+ 22980
+
+
+ 757
+ 23390
+
+
+ 758
+ 23790
+
+
+ 759
+ 24190
+
+
+ 760
+ 24580
+
+
+ 761
+ 24970
+
+
+ 762
+ 25340
+
+
+ 763
+ 25720
+
+
+ 764
+ 26080
+
+
+ 765
+ 26450
+
+
+ 766
+ 26800
+
+
+ 766.39
+ 26940
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18560
+
+
+ 746
+ 19130
+
+
+ 747
+ 19670
+
+
+ 748
+ 20210
+
+
+ 749
+ 20730
+
+
+ 750
+ 21230
+
+
+ 751
+ 21730
+
+
+ 752
+ 22210
+
+
+ 753
+ 22680
+
+
+ 754
+ 23150
+
+
+ 755
+ 23600
+
+
+ 756
+ 24050
+
+
+ 757
+ 24480
+
+
+ 758
+ 24910
+
+
+ 759
+ 25330
+
+
+ 760
+ 25750
+
+
+ 761
+ 26160
+
+
+ 762
+ 26560
+
+
+ 763
+ 26960
+
+
+ 764
+ 27350
+
+
+ 765
+ 27740
+
+
+ 766
+ 28120
+
+
+ 766.75
+ 28400
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 20500
+
+
+ 748
+ 21070
+
+
+ 749
+ 21630
+
+
+ 750
+ 22170
+
+
+ 751
+ 22700
+
+
+ 752
+ 23220
+
+
+ 753
+ 23720
+
+
+ 754
+ 24220
+
+
+ 755
+ 24700
+
+
+ 756
+ 25180
+
+
+ 757
+ 25640
+
+
+ 758
+ 26100
+
+
+ 759
+ 26550
+
+
+ 760
+ 26990
+
+
+ 761
+ 27430
+
+
+ 762
+ 27860
+
+
+ 763
+ 28280
+
+
+ 764
+ 28700
+
+
+ 765
+ 29110
+
+
+ 766
+ 29510
+
+
+ 767
+ 29910
+
+
+ 767.09
+ 29950
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 21930
+
+
+ 749
+ 22530
+
+
+ 750
+ 23100
+
+
+ 751
+ 23670
+
+
+ 752
+ 24220
+
+
+ 753
+ 24760
+
+
+ 754
+ 25280
+
+
+ 755
+ 25800
+
+
+ 756
+ 26310
+
+
+ 757
+ 26800
+
+
+ 758
+ 27290
+
+
+ 759
+ 27770
+
+
+ 760
+ 28240
+
+
+ 761
+ 28700
+
+
+ 762
+ 29160
+
+
+ 763
+ 29610
+
+
+ 764
+ 30050
+
+
+ 765
+ 30490
+
+
+ 766
+ 30920
+
+
+ 767
+ 31340
+
+
+ 767.4
+ 31510
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23330
+
+
+ 750
+ 23950
+
+
+ 751
+ 24550
+
+
+ 752
+ 25130
+
+
+ 753
+ 25700
+
+
+ 754
+ 26260
+
+
+ 755
+ 26810
+
+
+ 756
+ 27350
+
+
+ 757
+ 27870
+
+
+ 758
+ 28390
+
+
+ 759
+ 28890
+
+
+ 760
+ 29390
+
+
+ 761
+ 29880
+
+
+ 762
+ 30370
+
+
+ 763
+ 30840
+
+
+ 764
+ 31310
+
+
+ 765
+ 31770
+
+
+ 766
+ 32220
+
+
+ 767
+ 32670
+
+
+ 767.69
+ 32970
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 24770
+
+
+ 751
+ 25410
+
+
+ 752
+ 26030
+
+
+ 753
+ 26630
+
+
+ 754
+ 27220
+
+
+ 755
+ 27800
+
+
+ 756
+ 28370
+
+
+ 757
+ 28930
+
+
+ 758
+ 29470
+
+
+ 759
+ 30010
+
+
+ 760
+ 30540
+
+
+ 761
+ 31050
+
+
+ 762
+ 31560
+
+
+ 763
+ 32060
+
+
+ 764
+ 32560
+
+
+ 765
+ 33040
+
+
+ 766
+ 33520
+
+
+ 767
+ 33990
+
+
+ 767.95
+ 34440
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 25150
+
+
+ 751
+ 26330
+
+
+ 752
+ 26990
+
+
+ 753
+ 27630
+
+
+ 754
+ 28260
+
+
+ 755
+ 28880
+
+
+ 756
+ 29480
+
+
+ 757
+ 30070
+
+
+ 758
+ 30650
+
+
+ 759
+ 31210
+
+
+ 760
+ 31770
+
+
+ 761
+ 32320
+
+
+ 762
+ 32860
+
+
+ 763
+ 33390
+
+
+ 764
+ 33910
+
+
+ 765
+ 34420
+
+
+ 766
+ 34930
+
+
+ 767
+ 35430
+
+
+ 768
+ 35920
+
+
+ 768.19
+ 36010
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 25150
+
+
+ 751
+ 26570
+
+
+ 752
+ 27960
+
+
+ 753
+ 28640
+
+
+ 754
+ 29310
+
+
+ 755
+ 29960
+
+
+ 756
+ 30600
+
+
+ 757
+ 31220
+
+
+ 758
+ 31830
+
+
+ 759
+ 32430
+
+
+ 760
+ 33020
+
+
+ 761
+ 33600
+
+
+ 762
+ 34170
+
+
+ 763
+ 34730
+
+
+ 764
+ 35280
+
+
+ 765
+ 35820
+
+
+ 766
+ 36360
+
+
+ 767
+ 36880
+
+
+ 768
+ 37400
+
+
+ 768.39
+ 37600
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 25150
+
+
+ 751
+ 26570
+
+
+ 752
+ 28040
+
+
+ 753
+ 29510
+
+
+ 754
+ 30230
+
+
+ 755
+ 30920
+
+
+ 756
+ 31590
+
+
+ 757
+ 32250
+
+
+ 758
+ 32890
+
+
+ 759
+ 33520
+
+
+ 760
+ 34140
+
+
+ 761
+ 34750
+
+
+ 762
+ 35350
+
+
+ 763
+ 35940
+
+
+ 764
+ 36520
+
+
+ 765
+ 37090
+
+
+ 766
+ 37650
+
+
+ 767
+ 38210
+
+
+ 768
+ 38750
+
+
+ 768.57
+ 39060
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 25150
+
+
+ 751
+ 26570
+
+
+ 752
+ 28040
+
+
+ 753
+ 29510
+
+
+ 754
+ 30960
+
+
+ 755
+ 31870
+
+
+ 756
+ 32570
+
+
+ 757
+ 33270
+
+
+ 758
+ 33940
+
+
+ 759
+ 34610
+
+
+ 760
+ 35260
+
+
+ 761
+ 35900
+
+
+ 762
+ 36530
+
+
+ 763
+ 37150
+
+
+ 764
+ 37760
+
+
+ 765
+ 38360
+
+
+ 766
+ 38950
+
+
+ 767
+ 39530
+
+
+ 768
+ 40100
+
+
+ 768.72
+ 40510
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 25150
+
+
+ 751
+ 26570
+
+
+ 752
+ 28040
+
+
+ 753
+ 29510
+
+
+ 754
+ 30960
+
+
+ 755
+ 32440
+
+
+ 756
+ 33660
+
+
+ 757
+ 34390
+
+
+ 758
+ 35100
+
+
+ 759
+ 35800
+
+
+ 760
+ 36490
+
+
+ 761
+ 37170
+
+
+ 762
+ 37830
+
+
+ 763
+ 38480
+
+
+ 764
+ 39120
+
+
+ 765
+ 39750
+
+
+ 766
+ 40370
+
+
+ 767
+ 40980
+
+
+ 768
+ 41580
+
+
+ 768.84
+ 42080
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 25150
+
+
+ 751
+ 26570
+
+
+ 752
+ 28040
+
+
+ 753
+ 29510
+
+
+ 754
+ 30960
+
+
+ 755
+ 32440
+
+
+ 756
+ 34020
+
+
+ 757
+ 35380
+
+
+ 758
+ 36130
+
+
+ 759
+ 36870
+
+
+ 760
+ 37590
+
+
+ 761
+ 38300
+
+
+ 762
+ 38990
+
+
+ 763
+ 39670
+
+
+ 764
+ 40340
+
+
+ 765
+ 41000
+
+
+ 766
+ 41650
+
+
+ 767
+ 42290
+
+
+ 768
+ 42920
+
+
+ 768.93
+ 43500
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 25150
+
+
+ 751
+ 26570
+
+
+ 752
+ 28040
+
+
+ 753
+ 29510
+
+
+ 754
+ 30960
+
+
+ 755
+ 32440
+
+
+ 756
+ 34020
+
+
+ 757
+ 35560
+
+
+ 758
+ 37100
+
+
+ 759
+ 38050
+
+
+ 760
+ 38810
+
+
+ 761
+ 39550
+
+
+ 762
+ 40280
+
+
+ 763
+ 41000
+
+
+ 764
+ 41710
+
+
+ 765
+ 42400
+
+
+ 766
+ 43080
+
+
+ 767
+ 43750
+
+
+ 768
+ 44410
+
+
+ 768.98
+ 45050
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 25150
+
+
+ 751
+ 26570
+
+
+ 752
+ 28040
+
+
+ 753
+ 29510
+
+
+ 754
+ 30960
+
+
+ 755
+ 32440
+
+
+ 756
+ 34020
+
+
+ 757
+ 35560
+
+
+ 758
+ 37100
+
+
+ 759
+ 38670
+
+
+ 760
+ 39890
+
+
+ 761
+ 40670
+
+
+ 762
+ 41430
+
+
+ 763
+ 42180
+
+
+ 764
+ 42920
+
+
+ 765
+ 43650
+
+
+ 766
+ 44360
+
+
+ 767
+ 45060
+
+
+ 768
+ 45750
+
+
+ 769
+ 46430
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 25150
+
+
+ 751
+ 26570
+
+
+ 752
+ 28040
+
+
+ 753
+ 29510
+
+
+ 754
+ 30960
+
+
+ 755
+ 32440
+
+
+ 756
+ 34020
+
+
+ 757
+ 35560
+
+
+ 758
+ 37100
+
+
+ 759
+ 38670
+
+
+ 760
+ 40260
+
+
+ 761
+ 41890
+
+
+ 762
+ 42720
+
+
+ 763
+ 43510
+
+
+ 764
+ 44280
+
+
+ 765
+ 45040
+
+
+ 766
+ 45790
+
+
+ 767
+ 46530
+
+
+ 768
+ 47250
+
+
+ 768.98
+ 47950
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 120
+
+
+ 721
+ 350
+
+
+ 722
+ 650
+
+
+ 723
+ 1010
+
+
+ 724
+ 1410
+
+
+ 725
+ 1860
+
+
+ 726
+ 2360
+
+
+ 727
+ 2890
+
+
+ 728
+ 3460
+
+
+ 729
+ 4070
+
+
+ 730
+ 4720
+
+
+ 731
+ 5410
+
+
+ 732
+ 6130
+
+
+ 733
+ 6890
+
+
+ 734
+ 7680
+
+
+ 735
+ 8520
+
+
+ 736
+ 9380
+
+
+ 737
+ 10300
+
+
+ 738
+ 11230
+
+
+ 739
+ 12230
+
+
+ 740
+ 13230
+
+
+ 741
+ 14260
+
+
+ 742
+ 15340
+
+
+ 743
+ 16460
+
+
+ 744
+ 17560
+
+
+ 745
+ 18710
+
+
+ 746
+ 19910
+
+
+ 747
+ 21130
+
+
+ 748
+ 22430
+
+
+ 749
+ 23770
+
+
+ 750
+ 25150
+
+
+ 751
+ 26570
+
+
+ 752
+ 28040
+
+
+ 753
+ 29510
+
+
+ 754
+ 30960
+
+
+ 755
+ 32440
+
+
+ 756
+ 34020
+
+
+ 757
+ 35560
+
+
+ 758
+ 37100
+
+
+ 759
+ 38670
+
+
+ 760
+ 40260
+
+
+ 761
+ 41890
+
+
+ 762
+ 43550
+
+
+ 763
+ 44680
+
+
+ 764
+ 45490
+
+
+ 765
+ 46280
+
+
+ 766
+ 47070
+
+
+ 767
+ 47830
+
+
+ 768
+ 48590
+
+
+ 768.93
+ 49280
+
+
+
+
+ KEYS.Opening-Spillway_Gates,Elev;Flow-Spillway_Gates.Standard.Production
+
+ NGVD-29
+ 615.23
+
+ NAVD-88
+ 0.3625
+
+
+ ft,ft;cfs
+ 2012-02-21T10:42:00-06:00
+ 2012-02-21T10:42:00-06:00
+ true
+
+
+
+
+ 719
+ 0
+
+
+ 767.96
+ 0
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 161
+
+
+ 722
+ 187
+
+
+ 723
+ 209
+
+
+ 724
+ 229
+
+
+ 725
+ 248
+
+
+ 726
+ 265
+
+
+ 727
+ 282
+
+
+ 728
+ 297
+
+
+ 729
+ 312
+
+
+ 730
+ 326
+
+
+ 731
+ 339
+
+
+ 732
+ 352
+
+
+ 733
+ 365
+
+
+ 734
+ 377
+
+
+ 735
+ 388
+
+
+ 736
+ 400
+
+
+ 737
+ 411
+
+
+ 738
+ 421
+
+
+ 739
+ 432
+
+
+ 740
+ 442
+
+
+ 741
+ 452
+
+
+ 742
+ 462
+
+
+ 743
+ 471
+
+
+ 744
+ 481
+
+
+ 745
+ 490
+
+
+ 746
+ 499
+
+
+ 747
+ 508
+
+
+ 748
+ 516
+
+
+ 749
+ 525
+
+
+ 750
+ 533
+
+
+ 751
+ 542
+
+
+ 752
+ 550
+
+
+ 753
+ 558
+
+
+ 754
+ 566
+
+
+ 754.44
+ 569
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 310
+
+
+ 722
+ 360
+
+
+ 723
+ 410
+
+
+ 724
+ 450
+
+
+ 725
+ 490
+
+
+ 726
+ 520
+
+
+ 727
+ 560
+
+
+ 728
+ 590
+
+
+ 729
+ 620
+
+
+ 730
+ 640
+
+
+ 731
+ 670
+
+
+ 732
+ 700
+
+
+ 733
+ 720
+
+
+ 734
+ 750
+
+
+ 735
+ 770
+
+
+ 736
+ 790
+
+
+ 737
+ 820
+
+
+ 738
+ 840
+
+
+ 739
+ 860
+
+
+ 740
+ 880
+
+
+ 741
+ 900
+
+
+ 742
+ 920
+
+
+ 743
+ 940
+
+
+ 744
+ 960
+
+
+ 745
+ 980
+
+
+ 746
+ 990
+
+
+ 747
+ 1010
+
+
+ 748
+ 1030
+
+
+ 749
+ 1050
+
+
+ 750
+ 1060
+
+
+ 751
+ 1080
+
+
+ 752
+ 1100
+
+
+ 753
+ 1110
+
+
+ 754
+ 1130
+
+
+ 754.87
+ 1140
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 520
+
+
+ 723
+ 590
+
+
+ 724
+ 660
+
+
+ 725
+ 720
+
+
+ 726
+ 770
+
+
+ 727
+ 820
+
+
+ 728
+ 870
+
+
+ 729
+ 920
+
+
+ 730
+ 960
+
+
+ 731
+ 1000
+
+
+ 732
+ 1040
+
+
+ 733
+ 1080
+
+
+ 734
+ 1120
+
+
+ 735
+ 1150
+
+
+ 736
+ 1190
+
+
+ 737
+ 1220
+
+
+ 738
+ 1260
+
+
+ 739
+ 1290
+
+
+ 740
+ 1320
+
+
+ 741
+ 1350
+
+
+ 742
+ 1380
+
+
+ 743
+ 1410
+
+
+ 744
+ 1440
+
+
+ 745
+ 1470
+
+
+ 746
+ 1490
+
+
+ 747
+ 1520
+
+
+ 748
+ 1550
+
+
+ 749
+ 1570
+
+
+ 750
+ 1600
+
+
+ 751
+ 1620
+
+
+ 752
+ 1650
+
+
+ 753
+ 1670
+
+
+ 754
+ 1700
+
+
+ 755
+ 1720
+
+
+ 755.29
+ 1730
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 770
+
+
+ 724
+ 860
+
+
+ 725
+ 940
+
+
+ 726
+ 1010
+
+
+ 727
+ 1080
+
+
+ 728
+ 1150
+
+
+ 729
+ 1210
+
+
+ 730
+ 1270
+
+
+ 731
+ 1330
+
+
+ 732
+ 1380
+
+
+ 733
+ 1430
+
+
+ 734
+ 1480
+
+
+ 735
+ 1530
+
+
+ 736
+ 1580
+
+
+ 737
+ 1620
+
+
+ 738
+ 1670
+
+
+ 739
+ 1710
+
+
+ 740
+ 1750
+
+
+ 741
+ 1790
+
+
+ 742
+ 1830
+
+
+ 743
+ 1870
+
+
+ 744
+ 1910
+
+
+ 745
+ 1950
+
+
+ 746
+ 1990
+
+
+ 747
+ 2020
+
+
+ 748
+ 2060
+
+
+ 749
+ 2090
+
+
+ 750
+ 2130
+
+
+ 751
+ 2160
+
+
+ 752
+ 2200
+
+
+ 753
+ 2230
+
+
+ 754
+ 2260
+
+
+ 755
+ 2290
+
+
+ 755.71
+ 2320
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 930
+
+
+ 724
+ 1050
+
+
+ 725
+ 1150
+
+
+ 726
+ 1250
+
+
+ 727
+ 1340
+
+
+ 728
+ 1420
+
+
+ 729
+ 1500
+
+
+ 730
+ 1580
+
+
+ 731
+ 1650
+
+
+ 732
+ 1720
+
+
+ 733
+ 1780
+
+
+ 734
+ 1840
+
+
+ 735
+ 1910
+
+
+ 736
+ 1970
+
+
+ 737
+ 2020
+
+
+ 738
+ 2080
+
+
+ 739
+ 2130
+
+
+ 740
+ 2190
+
+
+ 741
+ 2240
+
+
+ 742
+ 2290
+
+
+ 743
+ 2340
+
+
+ 744
+ 2390
+
+
+ 745
+ 2440
+
+
+ 746
+ 2480
+
+
+ 747
+ 2530
+
+
+ 748
+ 2570
+
+
+ 749
+ 2620
+
+
+ 750
+ 2660
+
+
+ 751
+ 2700
+
+
+ 752
+ 2750
+
+
+ 753
+ 2790
+
+
+ 754
+ 2830
+
+
+ 755
+ 2870
+
+
+ 756
+ 2910
+
+
+ 756.11
+ 2910
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1230
+
+
+ 725
+ 1360
+
+
+ 726
+ 1480
+
+
+ 727
+ 1590
+
+
+ 728
+ 1690
+
+
+ 729
+ 1780
+
+
+ 730
+ 1880
+
+
+ 731
+ 1960
+
+
+ 732
+ 2050
+
+
+ 733
+ 2130
+
+
+ 734
+ 2200
+
+
+ 735
+ 2280
+
+
+ 736
+ 2350
+
+
+ 737
+ 2420
+
+
+ 738
+ 2490
+
+
+ 739
+ 2560
+
+
+ 740
+ 2620
+
+
+ 741
+ 2680
+
+
+ 742
+ 2750
+
+
+ 743
+ 2810
+
+
+ 744
+ 2870
+
+
+ 745
+ 2920
+
+
+ 746
+ 2980
+
+
+ 747
+ 3040
+
+
+ 748
+ 3090
+
+
+ 749
+ 3140
+
+
+ 750
+ 3200
+
+
+ 751
+ 3250
+
+
+ 752
+ 3300
+
+
+ 753
+ 3350
+
+
+ 754
+ 3400
+
+
+ 755
+ 3450
+
+
+ 756
+ 3500
+
+
+ 756.51
+ 3520
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1390
+
+
+ 725
+ 1550
+
+
+ 726
+ 1690
+
+
+ 727
+ 1820
+
+
+ 728
+ 1940
+
+
+ 729
+ 2060
+
+
+ 730
+ 2170
+
+
+ 731
+ 2270
+
+
+ 732
+ 2370
+
+
+ 733
+ 2470
+
+
+ 734
+ 2560
+
+
+ 735
+ 2640
+
+
+ 736
+ 2730
+
+
+ 737
+ 2810
+
+
+ 738
+ 2890
+
+
+ 739
+ 2970
+
+
+ 740
+ 3050
+
+
+ 741
+ 3120
+
+
+ 742
+ 3200
+
+
+ 743
+ 3270
+
+
+ 744
+ 3340
+
+
+ 745
+ 3400
+
+
+ 746
+ 3470
+
+
+ 747
+ 3540
+
+
+ 748
+ 3600
+
+
+ 749
+ 3660
+
+
+ 750
+ 3730
+
+
+ 751
+ 3790
+
+
+ 752
+ 3850
+
+
+ 753
+ 3910
+
+
+ 754
+ 3970
+
+
+ 755
+ 4020
+
+
+ 756
+ 4080
+
+
+ 756.91
+ 4130
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1730
+
+
+ 726
+ 1900
+
+
+ 727
+ 2050
+
+
+ 728
+ 2190
+
+
+ 729
+ 2330
+
+
+ 730
+ 2450
+
+
+ 731
+ 2570
+
+
+ 732
+ 2690
+
+
+ 733
+ 2800
+
+
+ 734
+ 2910
+
+
+ 735
+ 3010
+
+
+ 736
+ 3110
+
+
+ 737
+ 3200
+
+
+ 738
+ 3300
+
+
+ 739
+ 3390
+
+
+ 740
+ 3470
+
+
+ 741
+ 3560
+
+
+ 742
+ 3640
+
+
+ 743
+ 3730
+
+
+ 744
+ 3810
+
+
+ 745
+ 3890
+
+
+ 746
+ 3960
+
+
+ 747
+ 4040
+
+
+ 748
+ 4110
+
+
+ 749
+ 4190
+
+
+ 750
+ 4260
+
+
+ 751
+ 4330
+
+
+ 752
+ 4400
+
+
+ 753
+ 4460
+
+
+ 754
+ 4530
+
+
+ 755
+ 4600
+
+
+ 756
+ 4660
+
+
+ 757
+ 4730
+
+
+ 757.3
+ 4750
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2100
+
+
+ 727
+ 2270
+
+
+ 728
+ 2440
+
+
+ 729
+ 2590
+
+
+ 730
+ 2740
+
+
+ 731
+ 2870
+
+
+ 732
+ 3000
+
+
+ 733
+ 3130
+
+
+ 734
+ 3250
+
+
+ 735
+ 3370
+
+
+ 736
+ 3480
+
+
+ 737
+ 3590
+
+
+ 738
+ 3700
+
+
+ 739
+ 3800
+
+
+ 740
+ 3900
+
+
+ 741
+ 4000
+
+
+ 742
+ 4090
+
+
+ 743
+ 4190
+
+
+ 744
+ 4280
+
+
+ 745
+ 4370
+
+
+ 746
+ 4450
+
+
+ 747
+ 4540
+
+
+ 748
+ 4630
+
+
+ 749
+ 4710
+
+
+ 750
+ 4790
+
+
+ 751
+ 4870
+
+
+ 752
+ 4950
+
+
+ 753
+ 5030
+
+
+ 754
+ 5100
+
+
+ 755
+ 5180
+
+
+ 756
+ 5250
+
+
+ 757
+ 5320
+
+
+ 757.68
+ 5370
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2280
+
+
+ 727
+ 2480
+
+
+ 728
+ 2670
+
+
+ 729
+ 2840
+
+
+ 730
+ 3010
+
+
+ 731
+ 3160
+
+
+ 732
+ 3310
+
+
+ 733
+ 3450
+
+
+ 734
+ 3590
+
+
+ 735
+ 3720
+
+
+ 736
+ 3850
+
+
+ 737
+ 3970
+
+
+ 738
+ 4090
+
+
+ 739
+ 4210
+
+
+ 740
+ 4320
+
+
+ 741
+ 4430
+
+
+ 742
+ 4540
+
+
+ 743
+ 4640
+
+
+ 744
+ 4740
+
+
+ 745
+ 4840
+
+
+ 746
+ 4940
+
+
+ 747
+ 5040
+
+
+ 748
+ 5130
+
+
+ 749
+ 5230
+
+
+ 750
+ 5320
+
+
+ 751
+ 5410
+
+
+ 752
+ 5500
+
+
+ 753
+ 5580
+
+
+ 754
+ 5670
+
+
+ 755
+ 5750
+
+
+ 756
+ 5830
+
+
+ 757
+ 5920
+
+
+ 758
+ 6000
+
+
+ 758.05
+ 6000
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2680
+
+
+ 728
+ 2890
+
+
+ 729
+ 3090
+
+
+ 730
+ 3270
+
+
+ 731
+ 3450
+
+
+ 732
+ 3610
+
+
+ 733
+ 3770
+
+
+ 734
+ 3930
+
+
+ 735
+ 4070
+
+
+ 736
+ 4210
+
+
+ 737
+ 4350
+
+
+ 738
+ 4480
+
+
+ 739
+ 4610
+
+
+ 740
+ 4740
+
+
+ 741
+ 4860
+
+
+ 742
+ 4980
+
+
+ 743
+ 5090
+
+
+ 744
+ 5210
+
+
+ 745
+ 5320
+
+
+ 746
+ 5430
+
+
+ 747
+ 5540
+
+
+ 748
+ 5640
+
+
+ 749
+ 5740
+
+
+ 750
+ 5840
+
+
+ 751
+ 5940
+
+
+ 752
+ 6040
+
+
+ 753
+ 6140
+
+
+ 754
+ 6230
+
+
+ 755
+ 6330
+
+
+ 756
+ 6420
+
+
+ 757
+ 6510
+
+
+ 758
+ 6600
+
+
+ 758.42
+ 6630
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2880
+
+
+ 728
+ 3110
+
+
+ 729
+ 3330
+
+
+ 730
+ 3530
+
+
+ 731
+ 3730
+
+
+ 732
+ 3910
+
+
+ 733
+ 4090
+
+
+ 734
+ 4260
+
+
+ 735
+ 4420
+
+
+ 736
+ 4570
+
+
+ 737
+ 4720
+
+
+ 738
+ 4870
+
+
+ 739
+ 5010
+
+
+ 740
+ 5150
+
+
+ 741
+ 5290
+
+
+ 742
+ 5420
+
+
+ 743
+ 5550
+
+
+ 744
+ 5670
+
+
+ 745
+ 5790
+
+
+ 746
+ 5910
+
+
+ 747
+ 6030
+
+
+ 748
+ 6150
+
+
+ 749
+ 6260
+
+
+ 750
+ 6370
+
+
+ 751
+ 6480
+
+
+ 752
+ 6590
+
+
+ 753
+ 6690
+
+
+ 754
+ 6800
+
+
+ 755
+ 6900
+
+
+ 756
+ 7000
+
+
+ 757
+ 7100
+
+
+ 758
+ 7200
+
+
+ 758.78
+ 7280
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3320
+
+
+ 729
+ 3560
+
+
+ 730
+ 3780
+
+
+ 731
+ 4000
+
+
+ 732
+ 4200
+
+
+ 733
+ 4390
+
+
+ 734
+ 4580
+
+
+ 735
+ 4760
+
+
+ 736
+ 4930
+
+
+ 737
+ 5100
+
+
+ 738
+ 5260
+
+
+ 739
+ 5410
+
+
+ 740
+ 5560
+
+
+ 741
+ 5710
+
+
+ 742
+ 5850
+
+
+ 743
+ 5990
+
+
+ 744
+ 6130
+
+
+ 745
+ 6270
+
+
+ 746
+ 6400
+
+
+ 747
+ 6530
+
+
+ 748
+ 6650
+
+
+ 749
+ 6780
+
+
+ 750
+ 6900
+
+
+ 751
+ 7020
+
+
+ 752
+ 7130
+
+
+ 753
+ 7250
+
+
+ 754
+ 7360
+
+
+ 755
+ 7480
+
+
+ 756
+ 7590
+
+
+ 757
+ 7690
+
+
+ 758
+ 7800
+
+
+ 759
+ 7910
+
+
+ 759.13
+ 7920
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 3780
+
+
+ 730
+ 4030
+
+
+ 731
+ 4260
+
+
+ 732
+ 4480
+
+
+ 733
+ 4700
+
+
+ 734
+ 4900
+
+
+ 735
+ 5090
+
+
+ 736
+ 5280
+
+
+ 737
+ 5460
+
+
+ 738
+ 5640
+
+
+ 739
+ 5800
+
+
+ 740
+ 5970
+
+
+ 741
+ 6130
+
+
+ 742
+ 6290
+
+
+ 743
+ 6440
+
+
+ 744
+ 6590
+
+
+ 745
+ 6730
+
+
+ 746
+ 6880
+
+
+ 747
+ 7020
+
+
+ 748
+ 7150
+
+
+ 749
+ 7290
+
+
+ 750
+ 7420
+
+
+ 751
+ 7550
+
+
+ 752
+ 7680
+
+
+ 753
+ 7800
+
+
+ 754
+ 7930
+
+
+ 755
+ 8050
+
+
+ 756
+ 8170
+
+
+ 757
+ 8290
+
+
+ 758
+ 8400
+
+
+ 759
+ 8520
+
+
+ 759.48
+ 8570
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4490
+
+
+ 731
+ 4770
+
+
+ 732
+ 5030
+
+
+ 733
+ 5280
+
+
+ 734
+ 5520
+
+
+ 735
+ 5740
+
+
+ 736
+ 5960
+
+
+ 737
+ 6180
+
+
+ 738
+ 6380
+
+
+ 739
+ 6580
+
+
+ 740
+ 6770
+
+
+ 741
+ 6960
+
+
+ 742
+ 7140
+
+
+ 743
+ 7320
+
+
+ 744
+ 7490
+
+
+ 745
+ 7660
+
+
+ 746
+ 7830
+
+
+ 747
+ 7990
+
+
+ 748
+ 8150
+
+
+ 749
+ 8310
+
+
+ 750
+ 8460
+
+
+ 751
+ 8610
+
+
+ 752
+ 8760
+
+
+ 753
+ 8910
+
+
+ 754
+ 9050
+
+
+ 755
+ 9190
+
+
+ 756
+ 9330
+
+
+ 757
+ 9470
+
+
+ 758
+ 9600
+
+
+ 759
+ 9730
+
+
+ 760
+ 9860
+
+
+ 760.16
+ 9880
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5240
+
+
+ 732
+ 5550
+
+
+ 733
+ 5840
+
+
+ 734
+ 6120
+
+
+ 735
+ 6380
+
+
+ 736
+ 6630
+
+
+ 737
+ 6880
+
+
+ 738
+ 7120
+
+
+ 739
+ 7340
+
+
+ 740
+ 7570
+
+
+ 741
+ 7780
+
+
+ 742
+ 7990
+
+
+ 743
+ 8200
+
+
+ 744
+ 8390
+
+
+ 745
+ 8590
+
+
+ 746
+ 8780
+
+
+ 747
+ 8970
+
+
+ 748
+ 9150
+
+
+ 749
+ 9330
+
+
+ 750
+ 9500
+
+
+ 751
+ 9680
+
+
+ 752
+ 9850
+
+
+ 753
+ 10010
+
+
+ 754
+ 10180
+
+
+ 755
+ 10340
+
+
+ 756
+ 10500
+
+
+ 757
+ 10650
+
+
+ 758
+ 10810
+
+
+ 759
+ 10960
+
+
+ 760
+ 11110
+
+
+ 760.81
+ 11230
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6040
+
+
+ 733
+ 6370
+
+
+ 734
+ 6690
+
+
+ 735
+ 6990
+
+
+ 736
+ 7280
+
+
+ 737
+ 7560
+
+
+ 738
+ 7830
+
+
+ 739
+ 8090
+
+
+ 740
+ 8340
+
+
+ 741
+ 8590
+
+
+ 742
+ 8830
+
+
+ 743
+ 9060
+
+
+ 744
+ 9280
+
+
+ 745
+ 9500
+
+
+ 746
+ 9720
+
+
+ 747
+ 9930
+
+
+ 748
+ 10140
+
+
+ 749
+ 10340
+
+
+ 750
+ 10540
+
+
+ 751
+ 10730
+
+
+ 752
+ 10920
+
+
+ 753
+ 11110
+
+
+ 754
+ 11300
+
+
+ 755
+ 11480
+
+
+ 756
+ 11660
+
+
+ 757
+ 11830
+
+
+ 758
+ 12010
+
+
+ 759
+ 12180
+
+
+ 760
+ 12350
+
+
+ 761
+ 12520
+
+
+ 761.43
+ 12590
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6870
+
+
+ 734
+ 7230
+
+
+ 735
+ 7570
+
+
+ 736
+ 7900
+
+
+ 737
+ 8220
+
+
+ 738
+ 8520
+
+
+ 739
+ 8820
+
+
+ 740
+ 9100
+
+
+ 741
+ 9380
+
+
+ 742
+ 9640
+
+
+ 743
+ 9900
+
+
+ 744
+ 10160
+
+
+ 745
+ 10400
+
+
+ 746
+ 10650
+
+
+ 747
+ 10880
+
+
+ 748
+ 11110
+
+
+ 749
+ 11340
+
+
+ 750
+ 11560
+
+
+ 751
+ 11780
+
+
+ 752
+ 11990
+
+
+ 753
+ 12200
+
+
+ 754
+ 12410
+
+
+ 755
+ 12610
+
+
+ 756
+ 12810
+
+
+ 757
+ 13010
+
+
+ 758
+ 13210
+
+
+ 759
+ 13400
+
+
+ 760
+ 13590
+
+
+ 761
+ 13770
+
+
+ 762
+ 13950
+
+
+ 762.04
+ 13960
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8130
+
+
+ 736
+ 8500
+
+
+ 737
+ 8850
+
+
+ 738
+ 9190
+
+
+ 739
+ 9520
+
+
+ 740
+ 9840
+
+
+ 741
+ 10150
+
+
+ 742
+ 10440
+
+
+ 743
+ 10730
+
+
+ 744
+ 11020
+
+
+ 745
+ 11290
+
+
+ 746
+ 11560
+
+
+ 747
+ 11820
+
+
+ 748
+ 12080
+
+
+ 749
+ 12330
+
+
+ 750
+ 12580
+
+
+ 751
+ 12820
+
+
+ 752
+ 13060
+
+
+ 753
+ 13290
+
+
+ 754
+ 13520
+
+
+ 755
+ 13740
+
+
+ 756
+ 13960
+
+
+ 757
+ 14180
+
+
+ 758
+ 14400
+
+
+ 759
+ 14610
+
+
+ 760
+ 14820
+
+
+ 761
+ 15020
+
+
+ 762
+ 15230
+
+
+ 762.61
+ 15350
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9050
+
+
+ 737
+ 9450
+
+
+ 738
+ 9820
+
+
+ 739
+ 10190
+
+
+ 740
+ 10540
+
+
+ 741
+ 10880
+
+
+ 742
+ 11210
+
+
+ 743
+ 11530
+
+
+ 744
+ 11840
+
+
+ 745
+ 12140
+
+
+ 746
+ 12440
+
+
+ 747
+ 12730
+
+
+ 748
+ 13010
+
+
+ 749
+ 13290
+
+
+ 750
+ 13560
+
+
+ 751
+ 13830
+
+
+ 752
+ 14090
+
+
+ 753
+ 14340
+
+
+ 754
+ 14590
+
+
+ 755
+ 14840
+
+
+ 756
+ 15080
+
+
+ 757
+ 15320
+
+
+ 758
+ 15560
+
+
+ 759
+ 15790
+
+
+ 760
+ 16020
+
+
+ 761
+ 16250
+
+
+ 762
+ 16470
+
+
+ 763
+ 16690
+
+
+ 763.17
+ 16730
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10030
+
+
+ 738
+ 10450
+
+
+ 739
+ 10850
+
+
+ 740
+ 11240
+
+
+ 741
+ 11610
+
+
+ 742
+ 11970
+
+
+ 743
+ 12330
+
+
+ 744
+ 12670
+
+
+ 745
+ 13000
+
+
+ 746
+ 13330
+
+
+ 747
+ 13640
+
+
+ 748
+ 13950
+
+
+ 749
+ 14260
+
+
+ 750
+ 14560
+
+
+ 751
+ 14850
+
+
+ 752
+ 15130
+
+
+ 753
+ 15410
+
+
+ 754
+ 15690
+
+
+ 755
+ 15960
+
+
+ 756
+ 16220
+
+
+ 757
+ 16490
+
+
+ 758
+ 16740
+
+
+ 759
+ 17000
+
+
+ 760
+ 17250
+
+
+ 761
+ 17490
+
+
+ 762
+ 17740
+
+
+ 763
+ 17980
+
+
+ 763.7
+ 18140
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11050
+
+
+ 739
+ 11490
+
+
+ 740
+ 11920
+
+
+ 741
+ 12330
+
+
+ 742
+ 12730
+
+
+ 743
+ 13110
+
+
+ 744
+ 13490
+
+
+ 745
+ 13850
+
+
+ 746
+ 14210
+
+
+ 747
+ 14550
+
+
+ 748
+ 14890
+
+
+ 749
+ 15220
+
+
+ 750
+ 15550
+
+
+ 751
+ 15870
+
+
+ 752
+ 16180
+
+
+ 753
+ 16480
+
+
+ 754
+ 16780
+
+
+ 755
+ 17080
+
+
+ 756
+ 17370
+
+
+ 757
+ 17650
+
+
+ 758
+ 17930
+
+
+ 759
+ 18210
+
+
+ 760
+ 18480
+
+
+ 761
+ 18750
+
+
+ 762
+ 19010
+
+
+ 763
+ 19270
+
+
+ 764
+ 19530
+
+
+ 764.21
+ 19580
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12080
+
+
+ 740
+ 12550
+
+
+ 741
+ 13000
+
+
+ 742
+ 13430
+
+
+ 743
+ 13850
+
+
+ 744
+ 14260
+
+
+ 745
+ 14660
+
+
+ 746
+ 15040
+
+
+ 747
+ 15420
+
+
+ 748
+ 15790
+
+
+ 749
+ 16150
+
+
+ 750
+ 16500
+
+
+ 751
+ 16840
+
+
+ 752
+ 17180
+
+
+ 753
+ 17510
+
+
+ 754
+ 17830
+
+
+ 755
+ 18150
+
+
+ 756
+ 18460
+
+
+ 757
+ 18770
+
+
+ 758
+ 19080
+
+
+ 759
+ 19370
+
+
+ 760
+ 19670
+
+
+ 761
+ 19960
+
+
+ 762
+ 20240
+
+
+ 763
+ 20520
+
+
+ 764
+ 20800
+
+
+ 764.69
+ 20990
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13190
+
+
+ 741
+ 13680
+
+
+ 742
+ 14150
+
+
+ 743
+ 14610
+
+
+ 744
+ 15050
+
+
+ 745
+ 15480
+
+
+ 746
+ 15900
+
+
+ 747
+ 16310
+
+
+ 748
+ 16710
+
+
+ 749
+ 17100
+
+
+ 750
+ 17480
+
+
+ 751
+ 17850
+
+
+ 752
+ 18210
+
+
+ 753
+ 18570
+
+
+ 754
+ 18920
+
+
+ 755
+ 19270
+
+
+ 756
+ 19610
+
+
+ 757
+ 19940
+
+
+ 758
+ 20260
+
+
+ 759
+ 20590
+
+
+ 760
+ 20900
+
+
+ 761
+ 21220
+
+
+ 762
+ 21520
+
+
+ 763
+ 21830
+
+
+ 764
+ 22130
+
+
+ 765
+ 22420
+
+
+ 765.15
+ 22470
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 14860
+
+
+ 743
+ 15360
+
+
+ 744
+ 15840
+
+
+ 745
+ 16310
+
+
+ 746
+ 16760
+
+
+ 747
+ 17200
+
+
+ 748
+ 17630
+
+
+ 749
+ 18050
+
+
+ 750
+ 18460
+
+
+ 751
+ 18860
+
+
+ 752
+ 19260
+
+
+ 753
+ 19640
+
+
+ 754
+ 20020
+
+
+ 755
+ 20390
+
+
+ 756
+ 20760
+
+
+ 757
+ 21110
+
+
+ 758
+ 21470
+
+
+ 759
+ 21810
+
+
+ 760
+ 22150
+
+
+ 761
+ 22490
+
+
+ 762
+ 22820
+
+
+ 763
+ 23150
+
+
+ 764
+ 23470
+
+
+ 765
+ 23790
+
+
+ 765.59
+ 23970
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16040
+
+
+ 744
+ 16560
+
+
+ 745
+ 17060
+
+
+ 746
+ 17550
+
+
+ 747
+ 18020
+
+
+ 748
+ 18490
+
+
+ 749
+ 18940
+
+
+ 750
+ 19380
+
+
+ 751
+ 19810
+
+
+ 752
+ 20230
+
+
+ 753
+ 20650
+
+
+ 754
+ 21050
+
+
+ 755
+ 21450
+
+
+ 756
+ 21840
+
+
+ 757
+ 22220
+
+
+ 758
+ 22600
+
+
+ 759
+ 22970
+
+
+ 760
+ 23330
+
+
+ 761
+ 23690
+
+
+ 762
+ 24050
+
+
+ 763
+ 24400
+
+
+ 764
+ 24740
+
+
+ 765
+ 25080
+
+
+ 766
+ 25410
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17310
+
+
+ 745
+ 17850
+
+
+ 746
+ 18370
+
+
+ 747
+ 18890
+
+
+ 748
+ 19380
+
+
+ 749
+ 19870
+
+
+ 750
+ 20340
+
+
+ 751
+ 20800
+
+
+ 752
+ 21260
+
+
+ 753
+ 21700
+
+
+ 754
+ 22140
+
+
+ 755
+ 22560
+
+
+ 756
+ 22980
+
+
+ 757
+ 23390
+
+
+ 758
+ 23790
+
+
+ 759
+ 24190
+
+
+ 760
+ 24580
+
+
+ 761
+ 24970
+
+
+ 762
+ 25340
+
+
+ 763
+ 25720
+
+
+ 764
+ 26080
+
+
+ 765
+ 26450
+
+
+ 766
+ 26800
+
+
+ 766.39
+ 26940
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18560
+
+
+ 746
+ 19130
+
+
+ 747
+ 19670
+
+
+ 748
+ 20210
+
+
+ 749
+ 20730
+
+
+ 750
+ 21230
+
+
+ 751
+ 21730
+
+
+ 752
+ 22210
+
+
+ 753
+ 22680
+
+
+ 754
+ 23150
+
+
+ 755
+ 23600
+
+
+ 756
+ 24050
+
+
+ 757
+ 24480
+
+
+ 758
+ 24910
+
+
+ 759
+ 25330
+
+
+ 760
+ 25750
+
+
+ 761
+ 26160
+
+
+ 762
+ 26560
+
+
+ 763
+ 26960
+
+
+ 764
+ 27350
+
+
+ 765
+ 27740
+
+
+ 766
+ 28120
+
+
+ 766.75
+ 28400
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 19920
+
+
+ 747
+ 20500
+
+
+ 748
+ 21070
+
+
+ 749
+ 21630
+
+
+ 750
+ 22170
+
+
+ 751
+ 22700
+
+
+ 752
+ 23220
+
+
+ 753
+ 23720
+
+
+ 754
+ 24220
+
+
+ 755
+ 24700
+
+
+ 756
+ 25180
+
+
+ 757
+ 25640
+
+
+ 758
+ 26100
+
+
+ 759
+ 26550
+
+
+ 760
+ 26990
+
+
+ 761
+ 27430
+
+
+ 762
+ 27860
+
+
+ 763
+ 28280
+
+
+ 764
+ 28700
+
+
+ 765
+ 29110
+
+
+ 766
+ 29510
+
+
+ 767
+ 29910
+
+
+ 767.09
+ 29950
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 21930
+
+
+ 749
+ 22530
+
+
+ 750
+ 23100
+
+
+ 751
+ 23670
+
+
+ 752
+ 24220
+
+
+ 753
+ 24760
+
+
+ 754
+ 25280
+
+
+ 755
+ 25800
+
+
+ 756
+ 26310
+
+
+ 757
+ 26800
+
+
+ 758
+ 27290
+
+
+ 759
+ 27770
+
+
+ 760
+ 28240
+
+
+ 761
+ 28700
+
+
+ 762
+ 29160
+
+
+ 763
+ 29610
+
+
+ 764
+ 30050
+
+
+ 765
+ 30490
+
+
+ 766
+ 30920
+
+
+ 767
+ 31340
+
+
+ 767.4
+ 31510
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23330
+
+
+ 750
+ 23950
+
+
+ 751
+ 24550
+
+
+ 752
+ 25130
+
+
+ 753
+ 25700
+
+
+ 754
+ 26260
+
+
+ 755
+ 26810
+
+
+ 756
+ 27350
+
+
+ 757
+ 27870
+
+
+ 758
+ 28390
+
+
+ 759
+ 28890
+
+
+ 760
+ 29390
+
+
+ 761
+ 29880
+
+
+ 762
+ 30370
+
+
+ 763
+ 30840
+
+
+ 764
+ 31310
+
+
+ 765
+ 31770
+
+
+ 766
+ 32220
+
+
+ 767
+ 32670
+
+
+ 767.69
+ 32970
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 24770
+
+
+ 751
+ 25410
+
+
+ 752
+ 26030
+
+
+ 753
+ 26630
+
+
+ 754
+ 27220
+
+
+ 755
+ 27800
+
+
+ 756
+ 28370
+
+
+ 757
+ 28930
+
+
+ 758
+ 29470
+
+
+ 759
+ 30010
+
+
+ 760
+ 30540
+
+
+ 761
+ 31050
+
+
+ 762
+ 31560
+
+
+ 763
+ 32060
+
+
+ 764
+ 32560
+
+
+ 765
+ 33040
+
+
+ 766
+ 33520
+
+
+ 767
+ 33990
+
+
+ 767.95
+ 34440
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26330
+
+
+ 752
+ 26990
+
+
+ 753
+ 27630
+
+
+ 754
+ 28260
+
+
+ 755
+ 28880
+
+
+ 756
+ 29480
+
+
+ 757
+ 30070
+
+
+ 758
+ 30650
+
+
+ 759
+ 31210
+
+
+ 760
+ 31770
+
+
+ 761
+ 32320
+
+
+ 762
+ 32860
+
+
+ 763
+ 33390
+
+
+ 764
+ 33910
+
+
+ 765
+ 34420
+
+
+ 766
+ 34930
+
+
+ 767
+ 35430
+
+
+ 768
+ 35920
+
+
+ 768.19
+ 36010
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 28640
+
+
+ 754
+ 29310
+
+
+ 755
+ 29960
+
+
+ 756
+ 30600
+
+
+ 757
+ 31220
+
+
+ 758
+ 31830
+
+
+ 759
+ 32430
+
+
+ 760
+ 33020
+
+
+ 761
+ 33600
+
+
+ 762
+ 34170
+
+
+ 763
+ 34730
+
+
+ 764
+ 35280
+
+
+ 765
+ 35820
+
+
+ 766
+ 36360
+
+
+ 767
+ 36880
+
+
+ 768
+ 37400
+
+
+ 768.39
+ 37600
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30230
+
+
+ 755
+ 30920
+
+
+ 756
+ 31590
+
+
+ 757
+ 32250
+
+
+ 758
+ 32890
+
+
+ 759
+ 33520
+
+
+ 760
+ 34140
+
+
+ 761
+ 34750
+
+
+ 762
+ 35350
+
+
+ 763
+ 35940
+
+
+ 764
+ 36520
+
+
+ 765
+ 37090
+
+
+ 766
+ 37650
+
+
+ 767
+ 38210
+
+
+ 768
+ 38750
+
+
+ 768.57
+ 39060
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 31870
+
+
+ 756
+ 32570
+
+
+ 757
+ 33270
+
+
+ 758
+ 33940
+
+
+ 759
+ 34610
+
+
+ 760
+ 35260
+
+
+ 761
+ 35900
+
+
+ 762
+ 36530
+
+
+ 763
+ 37150
+
+
+ 764
+ 37760
+
+
+ 765
+ 38360
+
+
+ 766
+ 38950
+
+
+ 767
+ 39530
+
+
+ 768
+ 40100
+
+
+ 768.72
+ 40510
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33660
+
+
+ 757
+ 34390
+
+
+ 758
+ 35100
+
+
+ 759
+ 35800
+
+
+ 760
+ 36490
+
+
+ 761
+ 37170
+
+
+ 762
+ 37830
+
+
+ 763
+ 38480
+
+
+ 764
+ 39120
+
+
+ 765
+ 39750
+
+
+ 766
+ 40370
+
+
+ 767
+ 40980
+
+
+ 768
+ 41580
+
+
+ 768.84
+ 42080
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33848
+
+
+ 757
+ 35380
+
+
+ 758
+ 36130
+
+
+ 759
+ 36870
+
+
+ 760
+ 37590
+
+
+ 761
+ 38300
+
+
+ 762
+ 38990
+
+
+ 763
+ 39670
+
+
+ 764
+ 40340
+
+
+ 765
+ 41000
+
+
+ 766
+ 41650
+
+
+ 767
+ 42290
+
+
+ 768
+ 42920
+
+
+ 768.93
+ 43500
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33848
+
+
+ 757
+ 35398
+
+
+ 758
+ 36978
+
+
+ 759
+ 38050
+
+
+ 760
+ 38810
+
+
+ 761
+ 39550
+
+
+ 762
+ 40280
+
+
+ 763
+ 41000
+
+
+ 764
+ 41710
+
+
+ 765
+ 42400
+
+
+ 766
+ 43080
+
+
+ 767
+ 43750
+
+
+ 768
+ 44410
+
+
+ 768.98
+ 45050
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33848
+
+
+ 757
+ 35398
+
+
+ 758
+ 36978
+
+
+ 759
+ 38589
+
+
+ 760
+ 39890
+
+
+ 761
+ 40670
+
+
+ 762
+ 41430
+
+
+ 763
+ 42180
+
+
+ 764
+ 42920
+
+
+ 765
+ 43650
+
+
+ 766
+ 44360
+
+
+ 767
+ 45060
+
+
+ 768
+ 45750
+
+
+ 769
+ 46430
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33848
+
+
+ 757
+ 35398
+
+
+ 758
+ 36978
+
+
+ 759
+ 38589
+
+
+ 760
+ 40232
+
+
+ 761
+ 41906
+
+
+ 762
+ 42720
+
+
+ 763
+ 43510
+
+
+ 764
+ 44280
+
+
+ 765
+ 45040
+
+
+ 766
+ 45790
+
+
+ 767
+ 46530
+
+
+ 768
+ 47250
+
+
+ 768.98
+ 47950
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33848
+
+
+ 757
+ 35398
+
+
+ 758
+ 36978
+
+
+ 759
+ 38589
+
+
+ 760
+ 40232
+
+
+ 761
+ 41906
+
+
+ 762
+ 43613
+
+
+ 763
+ 44680
+
+
+ 764
+ 45490
+
+
+ 765
+ 46280
+
+
+ 766
+ 47070
+
+
+ 767
+ 47830
+
+
+ 768
+ 48590
+
+
+ 768.93
+ 49280
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33848
+
+
+ 757
+ 35398
+
+
+ 758
+ 36978
+
+
+ 759
+ 38589
+
+
+ 760
+ 40232
+
+
+ 761
+ 41906
+
+
+ 762
+ 43613
+
+
+ 763
+ 45354
+
+
+ 764
+ 46860
+
+
+ 765
+ 47690
+
+
+ 766
+ 48510
+
+
+ 767
+ 49310
+
+
+ 768
+ 50100
+
+
+ 768.83
+ 50750
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33848
+
+
+ 757
+ 35398
+
+
+ 758
+ 36978
+
+
+ 759
+ 38589
+
+
+ 760
+ 40232
+
+
+ 761
+ 41906
+
+
+ 762
+ 43613
+
+
+ 763
+ 45354
+
+
+ 764
+ 47129
+
+
+ 765
+ 48939
+
+
+ 766
+ 49950
+
+
+ 767
+ 50790
+
+
+ 768
+ 51620
+
+
+ 768.69
+ 52180
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33848
+
+
+ 757
+ 35398
+
+
+ 758
+ 36978
+
+
+ 759
+ 38589
+
+
+ 760
+ 40232
+
+
+ 761
+ 41906
+
+
+ 762
+ 43613
+
+
+ 763
+ 45354
+
+
+ 764
+ 47129
+
+
+ 765
+ 48939
+
+
+ 766
+ 50785
+
+
+ 767
+ 52110
+
+
+ 768
+ 52970
+
+
+ 768.5
+ 53400
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33848
+
+
+ 757
+ 35398
+
+
+ 758
+ 36978
+
+
+ 759
+ 38589
+
+
+ 760
+ 40232
+
+
+ 761
+ 41906
+
+
+ 762
+ 43613
+
+
+ 763
+ 45354
+
+
+ 764
+ 47129
+
+
+ 765
+ 48939
+
+
+ 766
+ 50785
+
+
+ 767
+ 52668
+
+
+ 768
+ 54520
+
+
+ 768.26
+ 54740
+
+
+
+
+
+ 719
+ 0
+
+
+ 720
+ 124
+
+
+ 721
+ 353
+
+
+ 722
+ 651
+
+
+ 723
+ 1007
+
+
+ 724
+ 1412
+
+
+ 725
+ 1864
+
+
+ 726
+ 2359
+
+
+ 727
+ 2896
+
+
+ 728
+ 3471
+
+
+ 729
+ 4086
+
+
+ 730
+ 4737
+
+
+ 731
+ 5426
+
+
+ 732
+ 6152
+
+
+ 733
+ 6914
+
+
+ 734
+ 7712
+
+
+ 735
+ 8546
+
+
+ 736
+ 9415
+
+
+ 737
+ 10320
+
+
+ 738
+ 11260
+
+
+ 739
+ 12235
+
+
+ 740
+ 13245
+
+
+ 741
+ 14289
+
+
+ 742
+ 15368
+
+
+ 743
+ 16480
+
+
+ 744
+ 17626
+
+
+ 745
+ 18804
+
+
+ 746
+ 20016
+
+
+ 747
+ 21260
+
+
+ 748
+ 22536
+
+
+ 749
+ 23843
+
+
+ 750
+ 25181
+
+
+ 751
+ 26550
+
+
+ 752
+ 27949
+
+
+ 753
+ 29379
+
+
+ 754
+ 30838
+
+
+ 755
+ 32328
+
+
+ 756
+ 33848
+
+
+ 757
+ 35398
+
+
+ 758
+ 36978
+
+
+ 759
+ 38589
+
+
+ 760
+ 40232
+
+
+ 761
+ 41906
+
+
+ 762
+ 43613
+
+
+ 763
+ 45354
+
+
+ 764
+ 47129
+
+
+ 765
+ 48939
+
+
+ 766
+ 50785
+
+
+ 767
+ 52668
+
+
+ 767.96
+ 54589
+
+
+
+
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%-Humidity.Inst.1Hour.0.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%-Humidity.Inst.1Hour.0.Ccp-Rev.json
deleted file mode 100644
index e91c0b39f..000000000
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%-Humidity.Inst.1Hour.0.Ccp-Rev.json
+++ /dev/null
@@ -1,3558 +0,0 @@
-{
- "begin": "2026-07-01T00:00:00+00:00",
- "date-version-type": "UNVERSIONED",
- "end": "2026-07-30T08:00:00+00:00",
- "interval": "PT1H",
- "interval-offset": 0,
- "name": "EUFA.%-Humidity.Inst.1Hour.0.Ccp-Rev",
- "office-id": "SWT",
- "page": "MTc4NTI4MzIwMDAwMHx8MzN8fDMwMDAwMA==",
- "page-size": 300000,
- "time-zone": "US/Central",
- "total": 705,
- "units": "%",
- "value-columns": [
- {
- "name": "date-time",
- "ordinal": 1,
- "datatype": "java.sql.Timestamp"
- },
- {
- "name": "value",
- "ordinal": 2,
- "datatype": "java.lang.Double"
- },
- {
- "name": "quality-code",
- "ordinal": 3,
- "datatype": "int"
- }
- ],
- "values": [
- [
- 1782864000000,
- 55.84,
- 0
- ],
- [
- 1782867600000,
- 60.8,
- 0
- ],
- [
- 1782871200000,
- 68.85,
- 0
- ],
- [
- 1782874800000,
- 69.67,
- 0
- ],
- [
- 1782878400000,
- 72.84,
- 0
- ],
- [
- 1782882000000,
- 75.97,
- 0
- ],
- [
- 1782885600000,
- 79.03,
- 0
- ],
- [
- 1782889200000,
- 89.94,
- 0
- ],
- [
- 1782892800000,
- 86.25,
- 0
- ],
- [
- 1782896400000,
- 78.71,
- 0
- ],
- [
- 1782900000000,
- 80.29,
- 0
- ],
- [
- 1782903600000,
- 84.78,
- 0
- ],
- [
- 1782907200000,
- 84.51,
- 0
- ],
- [
- 1782910800000,
- 82.6,
- 0
- ],
- [
- 1782914400000,
- 78.47,
- 0
- ],
- [
- 1782918000000,
- 73.16,
- 0
- ],
- [
- 1782921600000,
- 68.13,
- 0
- ],
- [
- 1782925200000,
- 60.52,
- 0
- ],
- [
- 1782928800000,
- 55.82,
- 0
- ],
- [
- 1782932400000,
- 55.2,
- 0
- ],
- [
- 1782936000000,
- 53.83,
- 0
- ],
- [
- 1782939600000,
- 52.84,
- 0
- ],
- [
- 1782943200000,
- 49.13,
- 0
- ],
- [
- 1782946800000,
- 51.49,
- 0
- ],
- [
- 1782950400000,
- 54.17,
- 0
- ],
- [
- 1782954000000,
- 59.23,
- 0
- ],
- [
- 1782957600000,
- 69.94,
- 0
- ],
- [
- 1782961200000,
- 77.94,
- 0
- ],
- [
- 1782964800000,
- 73.24,
- 0
- ],
- [
- 1782968400000,
- 87.04,
- 0
- ],
- [
- 1782972000000,
- 83.67,
- 0
- ],
- [
- 1782975600000,
- 82.92,
- 0
- ],
- [
- 1782979200000,
- 89.3,
- 0
- ],
- [
- 1782982800000,
- 94.05,
- 0
- ],
- [
- 1782986400000,
- 77.97,
- 0
- ],
- [
- 1782990000000,
- 80.7,
- 0
- ],
- [
- 1782993600000,
- 89.61,
- 0
- ],
- [
- 1782997200000,
- 89.87,
- 0
- ],
- [
- 1783000800000,
- 86.99,
- 0
- ],
- [
- 1783004400000,
- 78.25,
- 0
- ],
- [
- 1783008000000,
- 77.78,
- 0
- ],
- [
- 1783011600000,
- 69.65,
- 0
- ],
- [
- 1783015200000,
- 64.63,
- 0
- ],
- [
- 1783018800000,
- 58.99,
- 0
- ],
- [
- 1783022400000,
- 56.64,
- 0
- ],
- [
- 1783026000000,
- 56.63,
- 0
- ],
- [
- 1783029600000,
- 57.46,
- 0
- ],
- [
- 1783033200000,
- 60.17,
- 0
- ],
- [
- 1783036800000,
- 82.41,
- 0
- ],
- [
- 1783040400000,
- 92.26,
- 0
- ],
- [
- 1783044000000,
- 96.98,
- 0
- ],
- [
- 1783047600000,
- 93.18,
- 0
- ],
- [
- 1783051200000,
- 91.47,
- 0
- ],
- [
- 1783054800000,
- 93.33,
- 0
- ],
- [
- 1783058400000,
- 95.51,
- 0
- ],
- [
- 1783062000000,
- 100.03,
- 0
- ],
- [
- 1783065600000,
- 100.03,
- 0
- ],
- [
- 1783069200000,
- 100.03,
- 0
- ],
- [
- 1783072800000,
- 100.03,
- 0
- ],
- [
- 1783076400000,
- 100.03,
- 0
- ],
- [
- 1783080000000,
- 97.61,
- 0
- ],
- [
- 1783083600000,
- 96.2,
- 0
- ],
- [
- 1783087200000,
- 87.79,
- 0
- ],
- [
- 1783090800000,
- 79.0,
- 0
- ],
- [
- 1783094400000,
- 71.2,
- 0
- ],
- [
- 1783098000000,
- 66.42,
- 0
- ],
- [
- 1783101600000,
- 63.18,
- 0
- ],
- [
- 1783105200000,
- 61.34,
- 0
- ],
- [
- 1783108800000,
- 59.83,
- 0
- ],
- [
- 1783112400000,
- 57.69,
- 0
- ],
- [
- 1783116000000,
- 61.22,
- 0
- ],
- [
- 1783119600000,
- 61.5,
- 0
- ],
- [
- 1783123200000,
- 64.21,
- 0
- ],
- [
- 1783126800000,
- 66.52,
- 0
- ],
- [
- 1783130400000,
- 71.98,
- 0
- ],
- [
- 1783134000000,
- 77.21,
- 0
- ],
- [
- 1783137600000,
- 81.01,
- 0
- ],
- [
- 1783141200000,
- 81.69,
- 0
- ],
- [
- 1783144800000,
- 84.79,
- 0
- ],
- [
- 1783148400000,
- 92.6,
- 0
- ],
- [
- 1783152000000,
- 96.86,
- 0
- ],
- [
- 1783155600000,
- 98.38,
- 0
- ],
- [
- 1783159200000,
- 100.01,
- 0
- ],
- [
- 1783162800000,
- 100.03,
- 0
- ],
- [
- 1783166400000,
- 99.54,
- 0
- ],
- [
- 1783170000000,
- 93.4,
- 0
- ],
- [
- 1783173600000,
- 78.96,
- 0
- ],
- [
- 1783177200000,
- 70.97,
- 0
- ],
- [
- 1783180800000,
- 69.75,
- 0
- ],
- [
- 1783184400000,
- 64.44,
- 0
- ],
- [
- 1783188000000,
- 58.99,
- 0
- ],
- [
- 1783191600000,
- 55.12,
- 0
- ],
- [
- 1783195200000,
- 52.73,
- 0
- ],
- [
- 1783198800000,
- 48.04,
- 0
- ],
- [
- 1783202400000,
- 46.92,
- 0
- ],
- [
- 1783206000000,
- 50.09,
- 0
- ],
- [
- 1783209600000,
- 58.89,
- 0
- ],
- [
- 1783213200000,
- 65.02,
- 0
- ],
- [
- 1783216800000,
- 70.46,
- 0
- ],
- [
- 1783220400000,
- 77.5,
- 0
- ],
- [
- 1783224000000,
- 100.02,
- 0
- ],
- [
- 1783227600000,
- 100.04,
- 0
- ],
- [
- 1783231200000,
- 99.24,
- 0
- ],
- [
- 1783234800000,
- 93.53,
- 0
- ],
- [
- 1783238400000,
- 92.93,
- 0
- ],
- [
- 1783242000000,
- 96.73,
- 0
- ],
- [
- 1783245600000,
- 97.07,
- 0
- ],
- [
- 1783249200000,
- 99.86,
- 0
- ],
- [
- 1783252800000,
- 100.04,
- 0
- ],
- [
- 1783256400000,
- 97.91,
- 0
- ],
- [
- 1783260000000,
- 97.26,
- 0
- ],
- [
- 1783263600000,
- 88.55,
- 0
- ],
- [
- 1783267200000,
- 80.02,
- 0
- ],
- [
- 1783270800000,
- 69.97,
- 0
- ],
- [
- 1783274400000,
- 69.45,
- 0
- ],
- [
- 1783278000000,
- 63.05,
- 0
- ],
- [
- 1783281600000,
- 59.39,
- 0
- ],
- [
- 1783285200000,
- 54.3,
- 0
- ],
- [
- 1783288800000,
- 55.83,
- 0
- ],
- [
- 1783292400000,
- 61.38,
- 0
- ],
- [
- 1783296000000,
- 62.63,
- 0
- ],
- [
- 1783299600000,
- 69.59,
- 0
- ],
- [
- 1783303200000,
- 84.33,
- 0
- ],
- [
- 1783306800000,
- 91.3,
- 0
- ],
- [
- 1783310400000,
- 97.63,
- 0
- ],
- [
- 1783314000000,
- 100.04,
- 0
- ],
- [
- 1783317600000,
- 100.04,
- 0
- ],
- [
- 1783321200000,
- 100.04,
- 0
- ],
- [
- 1783324800000,
- 99.49,
- 0
- ],
- [
- 1783328400000,
- 100.02,
- 0
- ],
- [
- 1783332000000,
- 100.03,
- 0
- ],
- [
- 1783335600000,
- 100.03,
- 0
- ],
- [
- 1783339200000,
- 100.03,
- 0
- ],
- [
- 1783342800000,
- 99.03,
- 0
- ],
- [
- 1783346400000,
- 94.35,
- 0
- ],
- [
- 1783350000000,
- 88.34,
- 0
- ],
- [
- 1783353600000,
- 72.95,
- 0
- ],
- [
- 1783357200000,
- 66.83,
- 0
- ],
- [
- 1783360800000,
- 63.22,
- 0
- ],
- [
- 1783364400000,
- 57.84,
- 0
- ],
- [
- 1783368000000,
- 52.96,
- 0
- ],
- [
- 1783371600000,
- 52.94,
- 0
- ],
- [
- 1783375200000,
- 49.21,
- 0
- ],
- [
- 1783378800000,
- 51.12,
- 0
- ],
- [
- 1783382400000,
- 53.17,
- 0
- ],
- [
- 1783386000000,
- 53.98,
- 0
- ],
- [
- 1783389600000,
- 68.36,
- 0
- ],
- [
- 1783393200000,
- 76.68,
- 0
- ],
- [
- 1783396800000,
- 84.09,
- 0
- ],
- [
- 1783400400000,
- 93.44,
- 0
- ],
- [
- 1783404000000,
- 98.29,
- 0
- ],
- [
- 1783407600000,
- 95.41,
- 0
- ],
- [
- 1783411200000,
- 93.17,
- 0
- ],
- [
- 1783414800000,
- 93.46,
- 0
- ],
- [
- 1783418400000,
- 95.95,
- 0
- ],
- [
- 1783422000000,
- 99.21,
- 0
- ],
- [
- 1783425600000,
- 99.71,
- 0
- ],
- [
- 1783429200000,
- 96.01,
- 0
- ],
- [
- 1783432800000,
- 87.73,
- 0
- ],
- [
- 1783436400000,
- 79.4,
- 0
- ],
- [
- 1783440000000,
- 76.11,
- 0
- ],
- [
- 1783443600000,
- 74.28,
- 0
- ],
- [
- 1783447200000,
- 71.82,
- 0
- ],
- [
- 1783450800000,
- 68.2,
- 0
- ],
- [
- 1783454400000,
- 54.45,
- 0
- ],
- [
- 1783458000000,
- 52.61,
- 0
- ],
- [
- 1783461600000,
- 49.17,
- 0
- ],
- [
- 1783465200000,
- 48.52,
- 0
- ],
- [
- 1783468800000,
- 49.66,
- 0
- ],
- [
- 1783472400000,
- 54.92,
- 0
- ],
- [
- 1783476000000,
- 68.24,
- 0
- ],
- [
- 1783479600000,
- 86.41,
- 0
- ],
- [
- 1783483200000,
- 89.84,
- 0
- ],
- [
- 1783486800000,
- 95.08,
- 0
- ],
- [
- 1783490400000,
- 98.94,
- 0
- ],
- [
- 1783494000000,
- 97.91,
- 0
- ],
- [
- 1783497600000,
- 93.38,
- 0
- ],
- [
- 1783501200000,
- 94.68,
- 0
- ],
- [
- 1783504800000,
- 98.76,
- 0
- ],
- [
- 1783508400000,
- 99.99,
- 0
- ],
- [
- 1783512000000,
- 100.03,
- 0
- ],
- [
- 1783515600000,
- 99.45,
- 0
- ],
- [
- 1783519200000,
- 96.33,
- 0
- ],
- [
- 1783522800000,
- 85.8,
- 0
- ],
- [
- 1783526400000,
- 77.48,
- 0
- ],
- [
- 1783530000000,
- 67.38,
- 0
- ],
- [
- 1783533600000,
- 63.45,
- 0
- ],
- [
- 1783537200000,
- 59.45,
- 0
- ],
- [
- 1783540800000,
- 58.67,
- 0
- ],
- [
- 1783544400000,
- 59.69,
- 0
- ],
- [
- 1783548000000,
- 55.25,
- 0
- ],
- [
- 1783551600000,
- 55.02,
- 0
- ],
- [
- 1783555200000,
- 58.15,
- 0
- ],
- [
- 1783558800000,
- 63.57,
- 0
- ],
- [
- 1783562400000,
- 70.36,
- 0
- ],
- [
- 1783566000000,
- 74.73,
- 0
- ],
- [
- 1783569600000,
- 77.34,
- 0
- ],
- [
- 1783573200000,
- 79.37,
- 0
- ],
- [
- 1783576800000,
- 77.21,
- 0
- ],
- [
- 1783580400000,
- 77.44,
- 0
- ],
- [
- 1783584000000,
- 76.01,
- 0
- ],
- [
- 1783587600000,
- 71.92,
- 0
- ],
- [
- 1783591200000,
- 70.27,
- 0
- ],
- [
- 1783594800000,
- 68.35,
- 0
- ],
- [
- 1783598400000,
- 69.78,
- 0
- ],
- [
- 1783602000000,
- 70.89,
- 0
- ],
- [
- 1783605600000,
- 68.81,
- 0
- ],
- [
- 1783609200000,
- 66.38,
- 0
- ],
- [
- 1783612800000,
- 63.84,
- 0
- ],
- [
- 1783616400000,
- 61.0,
- 0
- ],
- [
- 1783620000000,
- 59.42,
- 0
- ],
- [
- 1783623600000,
- 55.41,
- 0
- ],
- [
- 1783627200000,
- 54.16,
- 0
- ],
- [
- 1783630800000,
- 52.78,
- 0
- ],
- [
- 1783634400000,
- 51.18,
- 0
- ],
- [
- 1783638000000,
- 50.74,
- 0
- ],
- [
- 1783641600000,
- 56.3,
- 0
- ],
- [
- 1783645200000,
- 62.31,
- 0
- ],
- [
- 1783648800000,
- 63.09,
- 0
- ],
- [
- 1783652400000,
- 63.11,
- 0
- ],
- [
- 1783656000000,
- 62.83,
- 0
- ],
- [
- 1783659600000,
- 61.17,
- 0
- ],
- [
- 1783663200000,
- 61.88,
- 0
- ],
- [
- 1783666800000,
- 58.8,
- 0
- ],
- [
- 1783670400000,
- 57.17,
- 0
- ],
- [
- 1783674000000,
- 58.64,
- 0
- ],
- [
- 1783677600000,
- 60.12,
- 0
- ],
- [
- 1783681200000,
- 62.68,
- 0
- ],
- [
- 1783684800000,
- 63.14,
- 0
- ],
- [
- 1783688400000,
- 63.21,
- 0
- ],
- [
- 1783692000000,
- 63.79,
- 0
- ],
- [
- 1783695600000,
- 61.61,
- 0
- ],
- [
- 1783699200000,
- 60.35,
- 0
- ],
- [
- 1783702800000,
- 56.33,
- 0
- ],
- [
- 1783706400000,
- 52.95,
- 0
- ],
- [
- 1783710000000,
- 50.44,
- 0
- ],
- [
- 1783713600000,
- 48.44,
- 0
- ],
- [
- 1783717200000,
- 47.71,
- 0
- ],
- [
- 1783720800000,
- 45.98,
- 0
- ],
- [
- 1783724400000,
- 46.77,
- 0
- ],
- [
- 1783728000000,
- 48.36,
- 0
- ],
- [
- 1783731600000,
- 55.02,
- 0
- ],
- [
- 1783735200000,
- 60.32,
- 0
- ],
- [
- 1783738800000,
- 64.26,
- 0
- ],
- [
- 1783742400000,
- 67.07,
- 0
- ],
- [
- 1783746000000,
- 67.18,
- 0
- ],
- [
- 1783749600000,
- 65.59,
- 0
- ],
- [
- 1783753200000,
- 66.64,
- 0
- ],
- [
- 1783756800000,
- 67.8,
- 0
- ],
- [
- 1783760400000,
- 68.58,
- 0
- ],
- [
- 1783764000000,
- 71.1,
- 0
- ],
- [
- 1783767600000,
- 73.06,
- 0
- ],
- [
- 1783771200000,
- 73.4,
- 0
- ],
- [
- 1783774800000,
- 73.61,
- 0
- ],
- [
- 1783778400000,
- 72.41,
- 0
- ],
- [
- 1783782000000,
- 68.64,
- 0
- ],
- [
- 1783785600000,
- 65.84,
- 0
- ],
- [
- 1783789200000,
- 63.07,
- 0
- ],
- [
- 1783792800000,
- 60.59,
- 0
- ],
- [
- 1783796400000,
- 56.28,
- 0
- ],
- [
- 1783800000000,
- 52.32,
- 0
- ],
- [
- 1783803600000,
- 50.52,
- 0
- ],
- [
- 1783807200000,
- 50.62,
- 0
- ],
- [
- 1783810800000,
- 48.39,
- 0
- ],
- [
- 1783814400000,
- 50.63,
- 0
- ],
- [
- 1783818000000,
- 54.45,
- 0
- ],
- [
- 1783821600000,
- 61.82,
- 0
- ],
- [
- 1783825200000,
- 76.25,
- 0
- ],
- [
- 1783828800000,
- 76.49,
- 0
- ],
- [
- 1783832400000,
- 90.3,
- 0
- ],
- [
- 1783836000000,
- 90.73,
- 0
- ],
- [
- 1783839600000,
- 90.7,
- 0
- ],
- [
- 1783843200000,
- 93.77,
- 0
- ],
- [
- 1783846800000,
- 99.46,
- 0
- ],
- [
- 1783850400000,
- 96.76,
- 0
- ],
- [
- 1783854000000,
- 100.03,
- 0
- ],
- [
- 1783857600000,
- 100.03,
- 0
- ],
- [
- 1783861200000,
- 100.04,
- 0
- ],
- [
- 1783864800000,
- 100.02,
- 0
- ],
- [
- 1783868400000,
- 97.15,
- 0
- ],
- [
- 1783872000000,
- 99.84,
- 0
- ],
- [
- 1783875600000,
- 99.98,
- 0
- ],
- [
- 1783879200000,
- 99.25,
- 0
- ],
- [
- 1783882800000,
- 96.01,
- 0
- ],
- [
- 1783886400000,
- 94.22,
- 0
- ],
- [
- 1783890000000,
- 90.94,
- 0
- ],
- [
- 1783893600000,
- 83.57,
- 0
- ],
- [
- 1783897200000,
- 78.04,
- 0
- ],
- [
- 1783900800000,
- 78.01,
- 0
- ],
- [
- 1783904400000,
- 79.36,
- 0
- ],
- [
- 1783908000000,
- 84.77,
- 0
- ],
- [
- 1783911600000,
- 96.98,
- 0
- ],
- [
- 1783915200000,
- 99.82,
- 0
- ],
- [
- 1783918800000,
- 100.03,
- 0
- ],
- [
- 1783922400000,
- 100.02,
- 0
- ],
- [
- 1783926000000,
- 100.02,
- 0
- ],
- [
- 1783929600000,
- 100.02,
- 0
- ],
- [
- 1783933200000,
- 100.02,
- 0
- ],
- [
- 1783936800000,
- 100.02,
- 0
- ],
- [
- 1783940400000,
- 100.02,
- 0
- ],
- [
- 1783944000000,
- 100.02,
- 0
- ],
- [
- 1783947600000,
- 100.03,
- 0
- ],
- [
- 1783951200000,
- 100.04,
- 0
- ],
- [
- 1783954800000,
- 99.21,
- 0
- ],
- [
- 1783958400000,
- 89.13,
- 0
- ],
- [
- 1783962000000,
- 77.6,
- 0
- ],
- [
- 1783965600000,
- 68.39,
- 0
- ],
- [
- 1783969200000,
- 61.69,
- 0
- ],
- [
- 1783972800000,
- 55.55,
- 0
- ],
- [
- 1783976400000,
- 48.69,
- 0
- ],
- [
- 1783980000000,
- 50.33,
- 0
- ],
- [
- 1783983600000,
- 54.22,
- 0
- ],
- [
- 1783987200000,
- 55.14,
- 0
- ],
- [
- 1783990800000,
- 59.21,
- 0
- ],
- [
- 1783994400000,
- 62.68,
- 0
- ],
- [
- 1783998000000,
- 77.16,
- 0
- ],
- [
- 1784001600000,
- 77.89,
- 0
- ],
- [
- 1784005200000,
- 82.49,
- 0
- ],
- [
- 1784008800000,
- 92.05,
- 0
- ],
- [
- 1784012400000,
- 93.67,
- 0
- ],
- [
- 1784016000000,
- 91.43,
- 0
- ],
- [
- 1784019600000,
- 92.08,
- 0
- ],
- [
- 1784023200000,
- 99.33,
- 0
- ],
- [
- 1784026800000,
- 99.7,
- 0
- ],
- [
- 1784030400000,
- 100.03,
- 0
- ],
- [
- 1784034000000,
- 99.17,
- 0
- ],
- [
- 1784037600000,
- 89.74,
- 0
- ],
- [
- 1784041200000,
- 82.91,
- 0
- ],
- [
- 1784044800000,
- 78.45,
- 0
- ],
- [
- 1784048400000,
- 73.76,
- 0
- ],
- [
- 1784052000000,
- 68.02,
- 0
- ],
- [
- 1784055600000,
- 62.72,
- 0
- ],
- [
- 1784059200000,
- 65.13,
- 0
- ],
- [
- 1784062800000,
- 61.9,
- 0
- ],
- [
- 1784066400000,
- 54.46,
- 0
- ],
- [
- 1784070000000,
- 49.9,
- 0
- ],
- [
- 1784073600000,
- 55.87,
- 0
- ],
- [
- 1784077200000,
- 63.25,
- 0
- ],
- [
- 1784080800000,
- 72.12,
- 0
- ],
- [
- 1784084400000,
- 85.53,
- 0
- ],
- [
- 1784088000000,
- 88.11,
- 0
- ],
- [
- 1784091600000,
- 95.72,
- 0
- ],
- [
- 1784095200000,
- 97.24,
- 0
- ],
- [
- 1784098800000,
- 94.85,
- 0
- ],
- [
- 1784102400000,
- 90.74,
- 0
- ],
- [
- 1784106000000,
- 93.44,
- 0
- ],
- [
- 1784109600000,
- 97.49,
- 0
- ],
- [
- 1784113200000,
- 99.94,
- 0
- ],
- [
- 1784116800000,
- 100.0,
- 0
- ],
- [
- 1784120400000,
- 93.65,
- 0
- ],
- [
- 1784124000000,
- 89.64,
- 0
- ],
- [
- 1784127600000,
- 98.15,
- 0
- ],
- [
- 1784131200000,
- 99.32,
- 0
- ],
- [
- 1784134800000,
- 100.02,
- 0
- ],
- [
- 1784138400000,
- 99.4,
- 0
- ],
- [
- 1784142000000,
- 91.18,
- 0
- ],
- [
- 1784145600000,
- 84.13,
- 0
- ],
- [
- 1784149200000,
- 79.6,
- 0
- ],
- [
- 1784152800000,
- 75.77,
- 0
- ],
- [
- 1784156400000,
- 69.16,
- 0
- ],
- [
- 1784160000000,
- 77.4,
- 0
- ],
- [
- 1784163600000,
- 84.78,
- 0
- ],
- [
- 1784167200000,
- 95.25,
- 0
- ],
- [
- 1784170800000,
- 96.93,
- 0
- ],
- [
- 1784174400000,
- null,
- 0
- ],
- [
- 1784178000000,
- null,
- 0
- ],
- [
- 1784181600000,
- null,
- 0
- ],
- [
- 1784185200000,
- null,
- 0
- ],
- [
- 1784188800000,
- null,
- 0
- ],
- [
- 1784192400000,
- 100.04,
- 0
- ],
- [
- 1784196000000,
- 94.27,
- 0
- ],
- [
- 1784199600000,
- 90.9,
- 0
- ],
- [
- 1784203200000,
- 92.62,
- 0
- ],
- [
- 1784206800000,
- 90.84,
- 0
- ],
- [
- 1784210400000,
- 85.48,
- 0
- ],
- [
- 1784214000000,
- 80.0,
- 0
- ],
- [
- 1784217600000,
- 74.87,
- 0
- ],
- [
- 1784221200000,
- 71.23,
- 0
- ],
- [
- 1784224800000,
- 68.67,
- 0
- ],
- [
- 1784228400000,
- 66.44,
- 0
- ],
- [
- 1784232000000,
- 61.33,
- 0
- ],
- [
- 1784235600000,
- 54.27,
- 0
- ],
- [
- 1784239200000,
- 52.77,
- 0
- ],
- [
- 1784242800000,
- 52.73,
- 0
- ],
- [
- 1784246400000,
- 55.29,
- 0
- ],
- [
- 1784250000000,
- 64.85,
- 0
- ],
- [
- 1784253600000,
- 81.03,
- 0
- ],
- [
- 1784257200000,
- 80.89,
- 0
- ],
- [
- 1784260800000,
- 84.63,
- 0
- ],
- [
- 1784264400000,
- 86.88,
- 0
- ],
- [
- 1784268000000,
- 86.54,
- 0
- ],
- [
- 1784271600000,
- 87.22,
- 0
- ],
- [
- 1784275200000,
- 87.34,
- 0
- ],
- [
- 1784278800000,
- 90.37,
- 0
- ],
- [
- 1784282400000,
- 91.02,
- 0
- ],
- [
- 1784286000000,
- 97.34,
- 0
- ],
- [
- 1784289600000,
- 99.48,
- 0
- ],
- [
- 1784293200000,
- 95.83,
- 0
- ],
- [
- 1784296800000,
- 84.19,
- 0
- ],
- [
- 1784300400000,
- 77.44,
- 0
- ],
- [
- 1784304000000,
- 74.23,
- 0
- ],
- [
- 1784307600000,
- 72.88,
- 0
- ],
- [
- 1784311200000,
- 71.06,
- 0
- ],
- [
- 1784314800000,
- 61.6,
- 0
- ],
- [
- 1784318400000,
- 61.44,
- 0
- ],
- [
- 1784322000000,
- 58.23,
- 0
- ],
- [
- 1784325600000,
- 63.49,
- 0
- ],
- [
- 1784329200000,
- 63.53,
- 0
- ],
- [
- 1784332800000,
- 59.36,
- 0
- ],
- [
- 1784336400000,
- 60.84,
- 0
- ],
- [
- 1784340000000,
- 68.77,
- 0
- ],
- [
- 1784343600000,
- 74.63,
- 0
- ],
- [
- 1784347200000,
- 74.38,
- 0
- ],
- [
- 1784350800000,
- 83.13,
- 0
- ],
- [
- 1784354400000,
- 88.99,
- 0
- ],
- [
- 1784358000000,
- 82.44,
- 0
- ],
- [
- 1784361600000,
- 80.0,
- 0
- ],
- [
- 1784365200000,
- 76.98,
- 0
- ],
- [
- 1784368800000,
- 78.15,
- 0
- ],
- [
- 1784372400000,
- 78.29,
- 0
- ],
- [
- 1784376000000,
- 79.1,
- 0
- ],
- [
- 1784379600000,
- 78.93,
- 0
- ],
- [
- 1784383200000,
- 75.44,
- 0
- ],
- [
- 1784386800000,
- 68.97,
- 0
- ],
- [
- 1784390400000,
- 60.63,
- 0
- ],
- [
- 1784394000000,
- 58.71,
- 0
- ],
- [
- 1784397600000,
- 57.65,
- 0
- ],
- [
- 1784401200000,
- 56.48,
- 0
- ],
- [
- 1784404800000,
- 55.33,
- 0
- ],
- [
- 1784408400000,
- 55.72,
- 0
- ],
- [
- 1784412000000,
- 52.81,
- 0
- ],
- [
- 1784415600000,
- 55.38,
- 0
- ],
- [
- 1784419200000,
- 56.79,
- 0
- ],
- [
- 1784422800000,
- 60.39,
- 0
- ],
- [
- 1784426400000,
- 62.61,
- 0
- ],
- [
- 1784430000000,
- 64.99,
- 0
- ],
- [
- 1784433600000,
- 68.65,
- 0
- ],
- [
- 1784437200000,
- 68.73,
- 0
- ],
- [
- 1784440800000,
- 70.69,
- 0
- ],
- [
- 1784444400000,
- 74.07,
- 0
- ],
- [
- 1784448000000,
- 78.79,
- 0
- ],
- [
- 1784451600000,
- 79.36,
- 0
- ],
- [
- 1784455200000,
- 82.17,
- 0
- ],
- [
- 1784458800000,
- 82.1,
- 0
- ],
- [
- 1784462400000,
- 82.41,
- 0
- ],
- [
- 1784466000000,
- 80.84,
- 0
- ],
- [
- 1784469600000,
- 74.91,
- 0
- ],
- [
- 1784473200000,
- 71.71,
- 0
- ],
- [
- 1784476800000,
- 69.68,
- 0
- ],
- [
- 1784480400000,
- 67.71,
- 0
- ],
- [
- 1784484000000,
- 66.26,
- 0
- ],
- [
- 1784487600000,
- 60.34,
- 0
- ],
- [
- 1784491200000,
- 55.84,
- 0
- ],
- [
- 1784494800000,
- 51.04,
- 0
- ],
- [
- 1784498400000,
- 46.42,
- 0
- ],
- [
- 1784502000000,
- 48.67,
- 0
- ],
- [
- 1784505600000,
- 54.09,
- 0
- ],
- [
- 1784509200000,
- 55.88,
- 0
- ],
- [
- 1784512800000,
- 65.28,
- 0
- ],
- [
- 1784516400000,
- 70.87,
- 0
- ],
- [
- 1784520000000,
- 78.35,
- 0
- ],
- [
- 1784523600000,
- 76.51,
- 0
- ],
- [
- 1784527200000,
- 74.71,
- 0
- ],
- [
- 1784530800000,
- 84.14,
- 0
- ],
- [
- 1784534400000,
- 83.77,
- 0
- ],
- [
- 1784538000000,
- 93.91,
- 0
- ],
- [
- 1784541600000,
- 95.41,
- 0
- ],
- [
- 1784545200000,
- 94.26,
- 0
- ],
- [
- 1784548800000,
- 91.57,
- 0
- ],
- [
- 1784552400000,
- 79.34,
- 0
- ],
- [
- 1784556000000,
- 72.63,
- 0
- ],
- [
- 1784559600000,
- 67.52,
- 0
- ],
- [
- 1784563200000,
- 66.58,
- 0
- ],
- [
- 1784566800000,
- 65.41,
- 0
- ],
- [
- 1784570400000,
- 60.87,
- 0
- ],
- [
- 1784574000000,
- 56.34,
- 0
- ],
- [
- 1784577600000,
- 50.46,
- 0
- ],
- [
- 1784581200000,
- 48.92,
- 0
- ],
- [
- 1784584800000,
- 46.22,
- 0
- ],
- [
- 1784588400000,
- 44.86,
- 0
- ],
- [
- 1784592000000,
- 44.2,
- 0
- ],
- [
- 1784595600000,
- 50.49,
- 0
- ],
- [
- 1784599200000,
- 57.93,
- 0
- ],
- [
- 1784602800000,
- 61.07,
- 0
- ],
- [
- 1784606400000,
- 65.42,
- 0
- ],
- [
- 1784610000000,
- 67.1,
- 0
- ],
- [
- 1784613600000,
- 68.49,
- 0
- ],
- [
- 1784617200000,
- 69.68,
- 0
- ],
- [
- 1784620800000,
- 71.82,
- 0
- ],
- [
- 1784624400000,
- 73.67,
- 0
- ],
- [
- 1784628000000,
- 69.67,
- 0
- ],
- [
- 1784631600000,
- 78.31,
- 0
- ],
- [
- 1784635200000,
- 86.49,
- 0
- ],
- [
- 1784638800000,
- 71.94,
- 0
- ],
- [
- 1784642400000,
- 66.14,
- 0
- ],
- [
- 1784646000000,
- 63.17,
- 0
- ],
- [
- 1784649600000,
- 60.98,
- 0
- ],
- [
- 1784653200000,
- 56.39,
- 0
- ],
- [
- 1784656800000,
- 54.66,
- 0
- ],
- [
- 1784660400000,
- 53.61,
- 0
- ],
- [
- 1784664000000,
- 51.95,
- 0
- ],
- [
- 1784667600000,
- 53.51,
- 0
- ],
- [
- 1784671200000,
- 55.27,
- 0
- ],
- [
- 1784674800000,
- 52.58,
- 0
- ],
- [
- 1784678400000,
- 50.05,
- 0
- ],
- [
- 1784682000000,
- 56.72,
- 0
- ],
- [
- 1784685600000,
- 64.88,
- 0
- ],
- [
- 1784689200000,
- 69.04,
- 0
- ],
- [
- 1784692800000,
- 62.57,
- 0
- ],
- [
- 1784696400000,
- 67.56,
- 0
- ],
- [
- 1784700000000,
- 67.03,
- 0
- ],
- [
- 1784703600000,
- 63.03,
- 0
- ],
- [
- 1784707200000,
- 66.31,
- 0
- ],
- [
- 1784710800000,
- 63.62,
- 0
- ],
- [
- 1784714400000,
- 64.09,
- 0
- ],
- [
- 1784718000000,
- 67.62,
- 0
- ],
- [
- 1784721600000,
- 71.34,
- 0
- ],
- [
- 1784725200000,
- 70.41,
- 0
- ],
- [
- 1784728800000,
- 66.99,
- 0
- ],
- [
- 1784732400000,
- 65.63,
- 0
- ],
- [
- 1784736000000,
- 61.82,
- 0
- ],
- [
- 1784739600000,
- 58.2,
- 0
- ],
- [
- 1784743200000,
- 52.72,
- 0
- ],
- [
- 1784746800000,
- 45.46,
- 0
- ],
- [
- 1784750400000,
- 48.0,
- 0
- ],
- [
- 1784754000000,
- 45.15,
- 0
- ],
- [
- 1784757600000,
- 43.69,
- 0
- ],
- [
- 1784761200000,
- 43.43,
- 0
- ],
- [
- 1784764800000,
- 42.87,
- 0
- ],
- [
- 1784768400000,
- 48.04,
- 0
- ],
- [
- 1784772000000,
- 53.39,
- 0
- ],
- [
- 1784775600000,
- 61.27,
- 0
- ],
- [
- 1784779200000,
- 69.68,
- 0
- ],
- [
- 1784782800000,
- 75.11,
- 0
- ],
- [
- 1784786400000,
- 75.37,
- 0
- ],
- [
- 1784790000000,
- 76.95,
- 0
- ],
- [
- 1784793600000,
- 72.43,
- 0
- ],
- [
- 1784797200000,
- 72.72,
- 0
- ],
- [
- 1784800800000,
- 73.94,
- 0
- ],
- [
- 1784804400000,
- 79.53,
- 0
- ],
- [
- 1784808000000,
- 80.56,
- 0
- ],
- [
- 1784811600000,
- 79.32,
- 0
- ],
- [
- 1784815200000,
- 74.03,
- 0
- ],
- [
- 1784818800000,
- 67.24,
- 0
- ],
- [
- 1784822400000,
- 62.03,
- 0
- ],
- [
- 1784826000000,
- 57.74,
- 0
- ],
- [
- 1784829600000,
- 55.0,
- 0
- ],
- [
- 1784833200000,
- 50.04,
- 0
- ],
- [
- 1784836800000,
- 49.57,
- 0
- ],
- [
- 1784840400000,
- 47.54,
- 0
- ],
- [
- 1784844000000,
- 45.29,
- 0
- ],
- [
- 1784847600000,
- 46.6,
- 0
- ],
- [
- 1784851200000,
- 48.65,
- 0
- ],
- [
- 1784854800000,
- 51.54,
- 0
- ],
- [
- 1784858400000,
- 59.03,
- 0
- ],
- [
- 1784862000000,
- 72.1,
- 0
- ],
- [
- 1784865600000,
- 64.51,
- 0
- ],
- [
- 1784869200000,
- 69.84,
- 0
- ],
- [
- 1784872800000,
- 79.01,
- 0
- ],
- [
- 1784876400000,
- 75.26,
- 0
- ],
- [
- 1784880000000,
- 79.81,
- 0
- ],
- [
- 1784883600000,
- 80.02,
- 0
- ],
- [
- 1784887200000,
- 81.3,
- 0
- ],
- [
- 1784890800000,
- 82.4,
- 0
- ],
- [
- 1784894400000,
- 80.53,
- 0
- ],
- [
- 1784898000000,
- 78.86,
- 0
- ],
- [
- 1784901600000,
- 79.74,
- 0
- ],
- [
- 1784905200000,
- 75.73,
- 0
- ],
- [
- 1784908800000,
- 76.97,
- 0
- ],
- [
- 1784912400000,
- 76.57,
- 0
- ],
- [
- 1784916000000,
- 71.79,
- 0
- ],
- [
- 1784919600000,
- 66.52,
- 0
- ],
- [
- 1784923200000,
- 65.32,
- 0
- ],
- [
- 1784926800000,
- 67.11,
- 0
- ],
- [
- 1784930400000,
- 70.68,
- 0
- ],
- [
- 1784934000000,
- 70.62,
- 0
- ],
- [
- 1784937600000,
- 73.57,
- 0
- ],
- [
- 1784941200000,
- 76.56,
- 0
- ],
- [
- 1784944800000,
- 81.57,
- 0
- ],
- [
- 1784948400000,
- 84.27,
- 0
- ],
- [
- 1784952000000,
- 82.38,
- 0
- ],
- [
- 1784955600000,
- 82.92,
- 0
- ],
- [
- 1784959200000,
- 82.69,
- 0
- ],
- [
- 1784962800000,
- 84.55,
- 0
- ],
- [
- 1784966400000,
- 83.05,
- 0
- ],
- [
- 1784970000000,
- 90.92,
- 0
- ],
- [
- 1784973600000,
- 90.72,
- 0
- ],
- [
- 1784977200000,
- 88.09,
- 0
- ],
- [
- 1784980800000,
- 84.36,
- 0
- ],
- [
- 1784984400000,
- 80.35,
- 0
- ],
- [
- 1784988000000,
- 75.04,
- 0
- ],
- [
- 1784991600000,
- 69.63,
- 0
- ],
- [
- 1784995200000,
- 65.78,
- 0
- ],
- [
- 1784998800000,
- 60.19,
- 0
- ],
- [
- 1785002400000,
- 56.93,
- 0
- ],
- [
- 1785006000000,
- 53.72,
- 0
- ],
- [
- 1785009600000,
- 52.22,
- 0
- ],
- [
- 1785013200000,
- 52.73,
- 0
- ],
- [
- 1785016800000,
- 49.32,
- 0
- ],
- [
- 1785020400000,
- 47.05,
- 0
- ],
- [
- 1785024000000,
- 47.57,
- 0
- ],
- [
- 1785027600000,
- 49.6,
- 0
- ],
- [
- 1785031200000,
- 57.22,
- 0
- ],
- [
- 1785034800000,
- 61.48,
- 0
- ],
- [
- 1785038400000,
- 63.66,
- 0
- ],
- [
- 1785042000000,
- 64.0,
- 0
- ],
- [
- 1785045600000,
- 62.95,
- 0
- ],
- [
- 1785049200000,
- 61.03,
- 0
- ],
- [
- 1785052800000,
- 59.72,
- 0
- ],
- [
- 1785056400000,
- 59.76,
- 0
- ],
- [
- 1785060000000,
- 63.2,
- 0
- ],
- [
- 1785063600000,
- 61.73,
- 0
- ],
- [
- 1785067200000,
- 61.49,
- 0
- ],
- [
- 1785070800000,
- 62.59,
- 0
- ],
- [
- 1785074400000,
- 61.37,
- 0
- ],
- [
- 1785078000000,
- 60.46,
- 0
- ],
- [
- 1785081600000,
- 56.23,
- 0
- ],
- [
- 1785085200000,
- 54.1,
- 0
- ],
- [
- 1785088800000,
- 55.66,
- 0
- ],
- [
- 1785092400000,
- 49.64,
- 0
- ],
- [
- 1785096000000,
- 44.96,
- 0
- ],
- [
- 1785099600000,
- 39.85,
- 0
- ],
- [
- 1785103200000,
- 38.43,
- 0
- ],
- [
- 1785106800000,
- 42.86,
- 0
- ],
- [
- 1785110400000,
- 41.09,
- 0
- ],
- [
- 1785114000000,
- 44.47,
- 0
- ],
- [
- 1785117600000,
- 50.5,
- 0
- ],
- [
- 1785121200000,
- 55.22,
- 0
- ],
- [
- 1785124800000,
- 54.92,
- 0
- ],
- [
- 1785128400000,
- 56.88,
- 0
- ],
- [
- 1785132000000,
- 58.54,
- 0
- ],
- [
- 1785135600000,
- 58.24,
- 0
- ],
- [
- 1785139200000,
- 60.4,
- 0
- ],
- [
- 1785142800000,
- 62.1,
- 0
- ],
- [
- 1785146400000,
- 61.68,
- 0
- ],
- [
- 1785150000000,
- 63.77,
- 0
- ],
- [
- 1785153600000,
- 69.87,
- 0
- ],
- [
- 1785157200000,
- 62.68,
- 0
- ],
- [
- 1785160800000,
- 58.84,
- 0
- ],
- [
- 1785164400000,
- 54.95,
- 0
- ],
- [
- 1785168000000,
- 49.31,
- 0
- ],
- [
- 1785171600000,
- 45.92,
- 0
- ],
- [
- 1785175200000,
- 44.73,
- 0
- ],
- [
- 1785178800000,
- 36.11,
- 0
- ],
- [
- 1785182400000,
- 37.05,
- 0
- ],
- [
- 1785186000000,
- 37.87,
- 0
- ],
- [
- 1785189600000,
- 37.18,
- 0
- ],
- [
- 1785193200000,
- 35.33,
- 0
- ],
- [
- 1785196800000,
- 36.14,
- 0
- ],
- [
- 1785200400000,
- 38.65,
- 0
- ],
- [
- 1785204000000,
- 45.32,
- 0
- ],
- [
- 1785207600000,
- 53.07,
- 0
- ],
- [
- 1785211200000,
- 52.34,
- 0
- ],
- [
- 1785214800000,
- 54.3,
- 0
- ],
- [
- 1785218400000,
- 52.41,
- 0
- ],
- [
- 1785222000000,
- 58.26,
- 0
- ],
- [
- 1785225600000,
- 62.29,
- 0
- ],
- [
- 1785229200000,
- 62.39,
- 0
- ],
- [
- 1785232800000,
- 61.62,
- 0
- ],
- [
- 1785236400000,
- 60.87,
- 0
- ],
- [
- 1785240000000,
- 62.82,
- 0
- ],
- [
- 1785243600000,
- 65.0,
- 0
- ],
- [
- 1785247200000,
- 64.9,
- 0
- ],
- [
- 1785250800000,
- 63.74,
- 0
- ],
- [
- 1785254400000,
- 62.12,
- 0
- ],
- [
- 1785258000000,
- 60.83,
- 0
- ],
- [
- 1785261600000,
- 57.32,
- 0
- ],
- [
- 1785265200000,
- 56.55,
- 0
- ],
- [
- 1785268800000,
- 59.53,
- 0
- ],
- [
- 1785272400000,
- 60.13,
- 0
- ],
- [
- 1785276000000,
- 50.41,
- 0
- ],
- [
- 1785279600000,
- 45.68,
- 0
- ],
- [
- 1785283200000,
- 50.05,
- 0
- ],
- [
- 1785286800000,
- 54.45,
- 0
- ],
- [
- 1785290400000,
- 67.25,
- 0
- ],
- [
- 1785294000000,
- 78.3,
- 0
- ],
- [
- 1785297600000,
- 79.63,
- 0
- ],
- [
- 1785301200000,
- 74.21,
- 0
- ],
- [
- 1785304800000,
- 64.22,
- 0
- ],
- [
- 1785308400000,
- 80.54,
- 0
- ],
- [
- 1785312000000,
- 74.37,
- 0
- ],
- [
- 1785315600000,
- 66.57,
- 0
- ],
- [
- 1785319200000,
- 74.43,
- 0
- ],
- [
- 1785322800000,
- 63.69,
- 0
- ],
- [
- 1785326400000,
- 64.46,
- 0
- ],
- [
- 1785330000000,
- 66.62,
- 0
- ],
- [
- 1785333600000,
- 65.72,
- 0
- ],
- [
- 1785337200000,
- 63.59,
- 0
- ],
- [
- 1785340800000,
- 62.27,
- 0
- ],
- [
- 1785344400000,
- 58.62,
- 0
- ],
- [
- 1785348000000,
- 51.6,
- 0
- ],
- [
- 1785351600000,
- 48.06,
- 0
- ],
- [
- 1785355200000,
- 48.04,
- 0
- ],
- [
- 1785358800000,
- 47.36,
- 0
- ],
- [
- 1785362400000,
- 50.19,
- 0
- ],
- [
- 1785366000000,
- 62.68,
- 0
- ],
- [
- 1785369600000,
- 68.36,
- 0
- ],
- [
- 1785373200000,
- 71.28,
- 0
- ],
- [
- 1785376800000,
- 89.68,
- 0
- ],
- [
- 1785380400000,
- 94.83,
- 0
- ],
- [
- 1785384000000,
- 90.27,
- 0
- ],
- [
- 1785387600000,
- 93.56,
- 0
- ],
- [
- 1785391200000,
- 94.23,
- 0
- ],
- [
- 1785394800000,
- 99.19,
- 0
- ],
- [
- 1785398400000,
- 100.03,
- 0
- ]
- ]
-}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%-Humidity.Inst.1Hour.0.Decodes-Raw.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%-Humidity.Inst.1Hour.0.Decodes-Raw.json
deleted file mode 100644
index 9a20b3b02..000000000
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%-Humidity.Inst.1Hour.0.Decodes-Raw.json
+++ /dev/null
@@ -1,3558 +0,0 @@
-{
- "begin": "2026-07-01T00:00:00+00:00",
- "date-version-type": "UNVERSIONED",
- "end": "2026-07-30T08:00:00+00:00",
- "interval": "PT1H",
- "interval-offset": 0,
- "name": "EUFA.%-Humidity.Inst.1Hour.0.Decodes-Raw",
- "office-id": "SWT",
- "page": "MTc4Mjg2NDAwMDAwMHx8MzM3fHwzMDAwMDA=",
- "page-size": 300000,
- "time-zone": "US/Central",
- "total": 705,
- "units": "%",
- "value-columns": [
- {
- "name": "date-time",
- "ordinal": 1,
- "datatype": "java.sql.Timestamp"
- },
- {
- "name": "value",
- "ordinal": 2,
- "datatype": "java.lang.Double"
- },
- {
- "name": "quality-code",
- "ordinal": 3,
- "datatype": "int"
- }
- ],
- "values": [
- [
- 1782864000000,
- 55.84,
- 0
- ],
- [
- 1782867600000,
- 60.8,
- 0
- ],
- [
- 1782871200000,
- 68.85,
- 0
- ],
- [
- 1782874800000,
- 69.67,
- 0
- ],
- [
- 1782878400000,
- 72.84,
- 0
- ],
- [
- 1782882000000,
- 75.97,
- 0
- ],
- [
- 1782885600000,
- 79.03,
- 0
- ],
- [
- 1782889200000,
- 89.94,
- 0
- ],
- [
- 1782892800000,
- 86.25,
- 0
- ],
- [
- 1782896400000,
- 78.71,
- 0
- ],
- [
- 1782900000000,
- 80.29,
- 0
- ],
- [
- 1782903600000,
- 84.78,
- 0
- ],
- [
- 1782907200000,
- 84.51,
- 0
- ],
- [
- 1782910800000,
- 82.6,
- 0
- ],
- [
- 1782914400000,
- 78.47,
- 0
- ],
- [
- 1782918000000,
- 73.16,
- 0
- ],
- [
- 1782921600000,
- 68.13,
- 0
- ],
- [
- 1782925200000,
- 60.52,
- 0
- ],
- [
- 1782928800000,
- 55.82,
- 0
- ],
- [
- 1782932400000,
- 55.2,
- 0
- ],
- [
- 1782936000000,
- 53.83,
- 0
- ],
- [
- 1782939600000,
- 52.84,
- 0
- ],
- [
- 1782943200000,
- 49.13,
- 0
- ],
- [
- 1782946800000,
- 51.49,
- 0
- ],
- [
- 1782950400000,
- 54.17,
- 0
- ],
- [
- 1782954000000,
- 59.23,
- 0
- ],
- [
- 1782957600000,
- 69.94,
- 0
- ],
- [
- 1782961200000,
- 77.94,
- 0
- ],
- [
- 1782964800000,
- 73.24,
- 0
- ],
- [
- 1782968400000,
- 87.04,
- 0
- ],
- [
- 1782972000000,
- 83.67,
- 0
- ],
- [
- 1782975600000,
- 82.92,
- 0
- ],
- [
- 1782979200000,
- 89.3,
- 0
- ],
- [
- 1782982800000,
- 94.05,
- 0
- ],
- [
- 1782986400000,
- 77.97,
- 0
- ],
- [
- 1782990000000,
- 80.7,
- 0
- ],
- [
- 1782993600000,
- 89.61,
- 0
- ],
- [
- 1782997200000,
- 89.87,
- 0
- ],
- [
- 1783000800000,
- 86.99,
- 0
- ],
- [
- 1783004400000,
- 78.25,
- 0
- ],
- [
- 1783008000000,
- 77.78,
- 0
- ],
- [
- 1783011600000,
- 69.65,
- 0
- ],
- [
- 1783015200000,
- 64.63,
- 0
- ],
- [
- 1783018800000,
- 58.99,
- 0
- ],
- [
- 1783022400000,
- 56.64,
- 0
- ],
- [
- 1783026000000,
- 56.63,
- 0
- ],
- [
- 1783029600000,
- 57.46,
- 0
- ],
- [
- 1783033200000,
- 60.17,
- 0
- ],
- [
- 1783036800000,
- 82.41,
- 0
- ],
- [
- 1783040400000,
- 92.26,
- 0
- ],
- [
- 1783044000000,
- 96.98,
- 0
- ],
- [
- 1783047600000,
- 93.18,
- 0
- ],
- [
- 1783051200000,
- 91.47,
- 0
- ],
- [
- 1783054800000,
- 93.33,
- 0
- ],
- [
- 1783058400000,
- 95.51,
- 0
- ],
- [
- 1783062000000,
- 100.03,
- 0
- ],
- [
- 1783065600000,
- 100.03,
- 0
- ],
- [
- 1783069200000,
- 100.03,
- 0
- ],
- [
- 1783072800000,
- 100.03,
- 0
- ],
- [
- 1783076400000,
- 100.03,
- 0
- ],
- [
- 1783080000000,
- 97.61,
- 0
- ],
- [
- 1783083600000,
- 96.2,
- 0
- ],
- [
- 1783087200000,
- 87.79,
- 0
- ],
- [
- 1783090800000,
- 79.0,
- 0
- ],
- [
- 1783094400000,
- 71.2,
- 0
- ],
- [
- 1783098000000,
- 66.42,
- 0
- ],
- [
- 1783101600000,
- 63.18,
- 0
- ],
- [
- 1783105200000,
- 61.34,
- 0
- ],
- [
- 1783108800000,
- 59.83,
- 0
- ],
- [
- 1783112400000,
- 57.69,
- 0
- ],
- [
- 1783116000000,
- 61.22,
- 0
- ],
- [
- 1783119600000,
- 61.5,
- 0
- ],
- [
- 1783123200000,
- 64.21,
- 0
- ],
- [
- 1783126800000,
- 66.52,
- 0
- ],
- [
- 1783130400000,
- 71.98,
- 0
- ],
- [
- 1783134000000,
- 77.21,
- 0
- ],
- [
- 1783137600000,
- 81.01,
- 0
- ],
- [
- 1783141200000,
- 81.69,
- 0
- ],
- [
- 1783144800000,
- 84.79,
- 0
- ],
- [
- 1783148400000,
- 92.6,
- 0
- ],
- [
- 1783152000000,
- 96.86,
- 0
- ],
- [
- 1783155600000,
- 98.38,
- 0
- ],
- [
- 1783159200000,
- 100.01,
- 0
- ],
- [
- 1783162800000,
- 100.03,
- 0
- ],
- [
- 1783166400000,
- 99.54,
- 0
- ],
- [
- 1783170000000,
- 93.4,
- 0
- ],
- [
- 1783173600000,
- 78.96,
- 0
- ],
- [
- 1783177200000,
- 70.97,
- 0
- ],
- [
- 1783180800000,
- 69.75,
- 0
- ],
- [
- 1783184400000,
- 64.44,
- 0
- ],
- [
- 1783188000000,
- 58.99,
- 0
- ],
- [
- 1783191600000,
- 55.12,
- 0
- ],
- [
- 1783195200000,
- 52.73,
- 0
- ],
- [
- 1783198800000,
- 48.04,
- 0
- ],
- [
- 1783202400000,
- 46.92,
- 0
- ],
- [
- 1783206000000,
- 50.09,
- 0
- ],
- [
- 1783209600000,
- 58.89,
- 0
- ],
- [
- 1783213200000,
- 65.02,
- 0
- ],
- [
- 1783216800000,
- 70.46,
- 0
- ],
- [
- 1783220400000,
- 77.5,
- 0
- ],
- [
- 1783224000000,
- 100.02,
- 0
- ],
- [
- 1783227600000,
- 100.04,
- 0
- ],
- [
- 1783231200000,
- 99.24,
- 0
- ],
- [
- 1783234800000,
- 93.53,
- 0
- ],
- [
- 1783238400000,
- 92.93,
- 0
- ],
- [
- 1783242000000,
- 96.73,
- 0
- ],
- [
- 1783245600000,
- 97.07,
- 0
- ],
- [
- 1783249200000,
- 99.86,
- 0
- ],
- [
- 1783252800000,
- 100.04,
- 0
- ],
- [
- 1783256400000,
- 97.91,
- 0
- ],
- [
- 1783260000000,
- 97.26,
- 0
- ],
- [
- 1783263600000,
- 88.55,
- 0
- ],
- [
- 1783267200000,
- 80.02,
- 0
- ],
- [
- 1783270800000,
- 69.97,
- 0
- ],
- [
- 1783274400000,
- 69.45,
- 0
- ],
- [
- 1783278000000,
- 63.05,
- 0
- ],
- [
- 1783281600000,
- 59.39,
- 0
- ],
- [
- 1783285200000,
- 54.3,
- 0
- ],
- [
- 1783288800000,
- 55.83,
- 0
- ],
- [
- 1783292400000,
- 61.38,
- 0
- ],
- [
- 1783296000000,
- 62.63,
- 0
- ],
- [
- 1783299600000,
- 69.59,
- 0
- ],
- [
- 1783303200000,
- 84.33,
- 0
- ],
- [
- 1783306800000,
- 91.3,
- 0
- ],
- [
- 1783310400000,
- 97.63,
- 0
- ],
- [
- 1783314000000,
- 100.04,
- 0
- ],
- [
- 1783317600000,
- 100.04,
- 0
- ],
- [
- 1783321200000,
- 100.04,
- 0
- ],
- [
- 1783324800000,
- 99.49,
- 0
- ],
- [
- 1783328400000,
- 100.02,
- 0
- ],
- [
- 1783332000000,
- 100.03,
- 0
- ],
- [
- 1783335600000,
- 100.03,
- 0
- ],
- [
- 1783339200000,
- 100.03,
- 0
- ],
- [
- 1783342800000,
- 99.03,
- 0
- ],
- [
- 1783346400000,
- 94.35,
- 0
- ],
- [
- 1783350000000,
- 88.34,
- 0
- ],
- [
- 1783353600000,
- 72.95,
- 0
- ],
- [
- 1783357200000,
- 66.83,
- 0
- ],
- [
- 1783360800000,
- 63.22,
- 0
- ],
- [
- 1783364400000,
- 57.84,
- 0
- ],
- [
- 1783368000000,
- 52.96,
- 0
- ],
- [
- 1783371600000,
- 52.94,
- 0
- ],
- [
- 1783375200000,
- 49.21,
- 0
- ],
- [
- 1783378800000,
- 51.12,
- 0
- ],
- [
- 1783382400000,
- 53.17,
- 0
- ],
- [
- 1783386000000,
- 53.98,
- 0
- ],
- [
- 1783389600000,
- 68.36,
- 0
- ],
- [
- 1783393200000,
- 76.68,
- 0
- ],
- [
- 1783396800000,
- 84.09,
- 0
- ],
- [
- 1783400400000,
- 93.44,
- 0
- ],
- [
- 1783404000000,
- 98.29,
- 0
- ],
- [
- 1783407600000,
- 95.41,
- 0
- ],
- [
- 1783411200000,
- 93.17,
- 0
- ],
- [
- 1783414800000,
- 93.46,
- 0
- ],
- [
- 1783418400000,
- 95.95,
- 0
- ],
- [
- 1783422000000,
- 99.21,
- 0
- ],
- [
- 1783425600000,
- 99.71,
- 0
- ],
- [
- 1783429200000,
- 96.01,
- 0
- ],
- [
- 1783432800000,
- 87.73,
- 0
- ],
- [
- 1783436400000,
- 79.4,
- 0
- ],
- [
- 1783440000000,
- 76.11,
- 0
- ],
- [
- 1783443600000,
- 74.28,
- 0
- ],
- [
- 1783447200000,
- 71.82,
- 0
- ],
- [
- 1783450800000,
- 68.2,
- 0
- ],
- [
- 1783454400000,
- 54.45,
- 0
- ],
- [
- 1783458000000,
- 52.61,
- 0
- ],
- [
- 1783461600000,
- 49.17,
- 0
- ],
- [
- 1783465200000,
- 48.52,
- 0
- ],
- [
- 1783468800000,
- 49.66,
- 0
- ],
- [
- 1783472400000,
- 54.92,
- 0
- ],
- [
- 1783476000000,
- 68.24,
- 0
- ],
- [
- 1783479600000,
- 86.41,
- 0
- ],
- [
- 1783483200000,
- 89.84,
- 0
- ],
- [
- 1783486800000,
- 95.08,
- 0
- ],
- [
- 1783490400000,
- 98.94,
- 0
- ],
- [
- 1783494000000,
- 97.91,
- 0
- ],
- [
- 1783497600000,
- 93.38,
- 0
- ],
- [
- 1783501200000,
- 94.68,
- 0
- ],
- [
- 1783504800000,
- 98.76,
- 0
- ],
- [
- 1783508400000,
- 99.99,
- 0
- ],
- [
- 1783512000000,
- 100.03,
- 0
- ],
- [
- 1783515600000,
- 99.45,
- 0
- ],
- [
- 1783519200000,
- 96.33,
- 0
- ],
- [
- 1783522800000,
- 85.8,
- 0
- ],
- [
- 1783526400000,
- 77.48,
- 0
- ],
- [
- 1783530000000,
- 67.38,
- 0
- ],
- [
- 1783533600000,
- 63.45,
- 0
- ],
- [
- 1783537200000,
- 59.45,
- 0
- ],
- [
- 1783540800000,
- 58.67,
- 0
- ],
- [
- 1783544400000,
- 59.69,
- 0
- ],
- [
- 1783548000000,
- 55.25,
- 0
- ],
- [
- 1783551600000,
- 55.02,
- 0
- ],
- [
- 1783555200000,
- 58.15,
- 0
- ],
- [
- 1783558800000,
- 63.57,
- 0
- ],
- [
- 1783562400000,
- 70.36,
- 0
- ],
- [
- 1783566000000,
- 74.73,
- 0
- ],
- [
- 1783569600000,
- 77.34,
- 0
- ],
- [
- 1783573200000,
- 79.37,
- 0
- ],
- [
- 1783576800000,
- 77.21,
- 0
- ],
- [
- 1783580400000,
- 77.44,
- 0
- ],
- [
- 1783584000000,
- 76.01,
- 0
- ],
- [
- 1783587600000,
- 71.92,
- 0
- ],
- [
- 1783591200000,
- 70.27,
- 0
- ],
- [
- 1783594800000,
- 68.35,
- 0
- ],
- [
- 1783598400000,
- 69.78,
- 0
- ],
- [
- 1783602000000,
- 70.89,
- 0
- ],
- [
- 1783605600000,
- 68.81,
- 0
- ],
- [
- 1783609200000,
- 66.38,
- 0
- ],
- [
- 1783612800000,
- 63.84,
- 0
- ],
- [
- 1783616400000,
- 61.0,
- 0
- ],
- [
- 1783620000000,
- 59.42,
- 0
- ],
- [
- 1783623600000,
- 55.41,
- 0
- ],
- [
- 1783627200000,
- 54.16,
- 0
- ],
- [
- 1783630800000,
- 52.78,
- 0
- ],
- [
- 1783634400000,
- 51.18,
- 0
- ],
- [
- 1783638000000,
- 50.74,
- 0
- ],
- [
- 1783641600000,
- 56.3,
- 0
- ],
- [
- 1783645200000,
- 62.31,
- 0
- ],
- [
- 1783648800000,
- 63.09,
- 0
- ],
- [
- 1783652400000,
- 63.11,
- 0
- ],
- [
- 1783656000000,
- 62.83,
- 0
- ],
- [
- 1783659600000,
- 61.17,
- 0
- ],
- [
- 1783663200000,
- 61.88,
- 0
- ],
- [
- 1783666800000,
- 58.8,
- 0
- ],
- [
- 1783670400000,
- 57.17,
- 0
- ],
- [
- 1783674000000,
- 58.64,
- 0
- ],
- [
- 1783677600000,
- 60.12,
- 0
- ],
- [
- 1783681200000,
- 62.68,
- 0
- ],
- [
- 1783684800000,
- 63.14,
- 0
- ],
- [
- 1783688400000,
- 63.21,
- 0
- ],
- [
- 1783692000000,
- 63.79,
- 0
- ],
- [
- 1783695600000,
- 61.61,
- 0
- ],
- [
- 1783699200000,
- 60.35,
- 0
- ],
- [
- 1783702800000,
- 56.33,
- 0
- ],
- [
- 1783706400000,
- 52.95,
- 0
- ],
- [
- 1783710000000,
- 50.44,
- 0
- ],
- [
- 1783713600000,
- 48.44,
- 0
- ],
- [
- 1783717200000,
- 47.71,
- 0
- ],
- [
- 1783720800000,
- 45.98,
- 0
- ],
- [
- 1783724400000,
- 46.77,
- 0
- ],
- [
- 1783728000000,
- 48.36,
- 0
- ],
- [
- 1783731600000,
- 55.02,
- 0
- ],
- [
- 1783735200000,
- 60.32,
- 0
- ],
- [
- 1783738800000,
- 64.26,
- 0
- ],
- [
- 1783742400000,
- 67.07,
- 0
- ],
- [
- 1783746000000,
- 67.18,
- 0
- ],
- [
- 1783749600000,
- 65.59,
- 0
- ],
- [
- 1783753200000,
- 66.64,
- 0
- ],
- [
- 1783756800000,
- 67.8,
- 0
- ],
- [
- 1783760400000,
- 68.58,
- 0
- ],
- [
- 1783764000000,
- 71.1,
- 0
- ],
- [
- 1783767600000,
- 73.06,
- 0
- ],
- [
- 1783771200000,
- 73.4,
- 0
- ],
- [
- 1783774800000,
- 73.61,
- 0
- ],
- [
- 1783778400000,
- 72.41,
- 0
- ],
- [
- 1783782000000,
- 68.64,
- 0
- ],
- [
- 1783785600000,
- 65.84,
- 0
- ],
- [
- 1783789200000,
- 63.07,
- 0
- ],
- [
- 1783792800000,
- 60.59,
- 0
- ],
- [
- 1783796400000,
- 56.28,
- 0
- ],
- [
- 1783800000000,
- 52.32,
- 0
- ],
- [
- 1783803600000,
- 50.52,
- 0
- ],
- [
- 1783807200000,
- 50.62,
- 0
- ],
- [
- 1783810800000,
- 48.39,
- 0
- ],
- [
- 1783814400000,
- 50.63,
- 0
- ],
- [
- 1783818000000,
- 54.45,
- 0
- ],
- [
- 1783821600000,
- 61.82,
- 0
- ],
- [
- 1783825200000,
- 76.25,
- 0
- ],
- [
- 1783828800000,
- 76.49,
- 0
- ],
- [
- 1783832400000,
- 90.3,
- 0
- ],
- [
- 1783836000000,
- 90.73,
- 0
- ],
- [
- 1783839600000,
- 90.7,
- 0
- ],
- [
- 1783843200000,
- 93.77,
- 0
- ],
- [
- 1783846800000,
- 99.46,
- 0
- ],
- [
- 1783850400000,
- 96.76,
- 0
- ],
- [
- 1783854000000,
- 100.03,
- 0
- ],
- [
- 1783857600000,
- 100.03,
- 0
- ],
- [
- 1783861200000,
- 100.04,
- 0
- ],
- [
- 1783864800000,
- 100.02,
- 0
- ],
- [
- 1783868400000,
- 97.15,
- 0
- ],
- [
- 1783872000000,
- 99.84,
- 0
- ],
- [
- 1783875600000,
- 99.98,
- 0
- ],
- [
- 1783879200000,
- 99.25,
- 0
- ],
- [
- 1783882800000,
- 96.01,
- 0
- ],
- [
- 1783886400000,
- 94.22,
- 0
- ],
- [
- 1783890000000,
- 90.94,
- 0
- ],
- [
- 1783893600000,
- 83.57,
- 0
- ],
- [
- 1783897200000,
- 78.04,
- 0
- ],
- [
- 1783900800000,
- 78.01,
- 0
- ],
- [
- 1783904400000,
- 79.36,
- 0
- ],
- [
- 1783908000000,
- 84.77,
- 0
- ],
- [
- 1783911600000,
- 96.98,
- 0
- ],
- [
- 1783915200000,
- 99.82,
- 0
- ],
- [
- 1783918800000,
- 100.03,
- 0
- ],
- [
- 1783922400000,
- 100.02,
- 0
- ],
- [
- 1783926000000,
- 100.02,
- 0
- ],
- [
- 1783929600000,
- 100.02,
- 0
- ],
- [
- 1783933200000,
- 100.02,
- 0
- ],
- [
- 1783936800000,
- 100.02,
- 0
- ],
- [
- 1783940400000,
- 100.02,
- 0
- ],
- [
- 1783944000000,
- 100.02,
- 0
- ],
- [
- 1783947600000,
- 100.03,
- 0
- ],
- [
- 1783951200000,
- 100.04,
- 0
- ],
- [
- 1783954800000,
- 99.21,
- 0
- ],
- [
- 1783958400000,
- 89.13,
- 0
- ],
- [
- 1783962000000,
- 77.6,
- 0
- ],
- [
- 1783965600000,
- 68.39,
- 0
- ],
- [
- 1783969200000,
- 61.69,
- 0
- ],
- [
- 1783972800000,
- 55.55,
- 0
- ],
- [
- 1783976400000,
- 48.69,
- 0
- ],
- [
- 1783980000000,
- 50.33,
- 0
- ],
- [
- 1783983600000,
- 54.22,
- 0
- ],
- [
- 1783987200000,
- 55.14,
- 0
- ],
- [
- 1783990800000,
- 59.21,
- 0
- ],
- [
- 1783994400000,
- 62.68,
- 0
- ],
- [
- 1783998000000,
- 77.16,
- 0
- ],
- [
- 1784001600000,
- 77.89,
- 0
- ],
- [
- 1784005200000,
- 82.49,
- 0
- ],
- [
- 1784008800000,
- 92.05,
- 0
- ],
- [
- 1784012400000,
- 93.67,
- 0
- ],
- [
- 1784016000000,
- 91.43,
- 0
- ],
- [
- 1784019600000,
- 92.08,
- 0
- ],
- [
- 1784023200000,
- 99.33,
- 0
- ],
- [
- 1784026800000,
- 99.7,
- 0
- ],
- [
- 1784030400000,
- 100.03,
- 0
- ],
- [
- 1784034000000,
- 99.17,
- 0
- ],
- [
- 1784037600000,
- 89.74,
- 0
- ],
- [
- 1784041200000,
- 82.91,
- 0
- ],
- [
- 1784044800000,
- 78.45,
- 0
- ],
- [
- 1784048400000,
- 73.76,
- 0
- ],
- [
- 1784052000000,
- 68.02,
- 0
- ],
- [
- 1784055600000,
- 62.72,
- 0
- ],
- [
- 1784059200000,
- 65.13,
- 0
- ],
- [
- 1784062800000,
- 61.9,
- 0
- ],
- [
- 1784066400000,
- 54.46,
- 0
- ],
- [
- 1784070000000,
- 49.9,
- 0
- ],
- [
- 1784073600000,
- 55.87,
- 0
- ],
- [
- 1784077200000,
- 63.25,
- 0
- ],
- [
- 1784080800000,
- 72.12,
- 0
- ],
- [
- 1784084400000,
- 85.53,
- 0
- ],
- [
- 1784088000000,
- 88.11,
- 0
- ],
- [
- 1784091600000,
- 95.72,
- 0
- ],
- [
- 1784095200000,
- 97.24,
- 0
- ],
- [
- 1784098800000,
- 94.85,
- 0
- ],
- [
- 1784102400000,
- 90.74,
- 0
- ],
- [
- 1784106000000,
- 93.44,
- 0
- ],
- [
- 1784109600000,
- 97.49,
- 0
- ],
- [
- 1784113200000,
- 99.94,
- 0
- ],
- [
- 1784116800000,
- 100.0,
- 0
- ],
- [
- 1784120400000,
- 93.65,
- 0
- ],
- [
- 1784124000000,
- 89.64,
- 0
- ],
- [
- 1784127600000,
- 98.15,
- 0
- ],
- [
- 1784131200000,
- 99.32,
- 0
- ],
- [
- 1784134800000,
- 100.02,
- 0
- ],
- [
- 1784138400000,
- 99.4,
- 0
- ],
- [
- 1784142000000,
- 91.18,
- 0
- ],
- [
- 1784145600000,
- 84.13,
- 0
- ],
- [
- 1784149200000,
- 79.6,
- 0
- ],
- [
- 1784152800000,
- 75.77,
- 0
- ],
- [
- 1784156400000,
- 69.16,
- 0
- ],
- [
- 1784160000000,
- 77.4,
- 0
- ],
- [
- 1784163600000,
- 84.78,
- 0
- ],
- [
- 1784167200000,
- 95.25,
- 0
- ],
- [
- 1784170800000,
- 96.93,
- 0
- ],
- [
- 1784174400000,
- null,
- 0
- ],
- [
- 1784178000000,
- null,
- 0
- ],
- [
- 1784181600000,
- null,
- 0
- ],
- [
- 1784185200000,
- null,
- 0
- ],
- [
- 1784188800000,
- null,
- 0
- ],
- [
- 1784192400000,
- 100.04,
- 0
- ],
- [
- 1784196000000,
- 94.27,
- 0
- ],
- [
- 1784199600000,
- 90.9,
- 0
- ],
- [
- 1784203200000,
- 92.62,
- 0
- ],
- [
- 1784206800000,
- 90.84,
- 0
- ],
- [
- 1784210400000,
- 85.48,
- 0
- ],
- [
- 1784214000000,
- 80.0,
- 0
- ],
- [
- 1784217600000,
- 74.87,
- 0
- ],
- [
- 1784221200000,
- 71.23,
- 0
- ],
- [
- 1784224800000,
- 68.67,
- 0
- ],
- [
- 1784228400000,
- 66.44,
- 0
- ],
- [
- 1784232000000,
- 61.33,
- 0
- ],
- [
- 1784235600000,
- 54.27,
- 0
- ],
- [
- 1784239200000,
- 52.77,
- 0
- ],
- [
- 1784242800000,
- 52.73,
- 0
- ],
- [
- 1784246400000,
- 55.29,
- 0
- ],
- [
- 1784250000000,
- 64.85,
- 0
- ],
- [
- 1784253600000,
- 81.03,
- 0
- ],
- [
- 1784257200000,
- 80.89,
- 0
- ],
- [
- 1784260800000,
- 84.63,
- 0
- ],
- [
- 1784264400000,
- 86.88,
- 0
- ],
- [
- 1784268000000,
- 86.54,
- 0
- ],
- [
- 1784271600000,
- 87.22,
- 0
- ],
- [
- 1784275200000,
- 87.34,
- 0
- ],
- [
- 1784278800000,
- 90.37,
- 0
- ],
- [
- 1784282400000,
- 91.02,
- 0
- ],
- [
- 1784286000000,
- 97.34,
- 0
- ],
- [
- 1784289600000,
- 99.48,
- 0
- ],
- [
- 1784293200000,
- 95.83,
- 0
- ],
- [
- 1784296800000,
- 84.19,
- 0
- ],
- [
- 1784300400000,
- 77.44,
- 0
- ],
- [
- 1784304000000,
- 74.23,
- 0
- ],
- [
- 1784307600000,
- 72.88,
- 0
- ],
- [
- 1784311200000,
- 71.06,
- 0
- ],
- [
- 1784314800000,
- 61.6,
- 0
- ],
- [
- 1784318400000,
- 61.44,
- 0
- ],
- [
- 1784322000000,
- 58.23,
- 0
- ],
- [
- 1784325600000,
- 63.49,
- 0
- ],
- [
- 1784329200000,
- 63.53,
- 0
- ],
- [
- 1784332800000,
- 59.36,
- 0
- ],
- [
- 1784336400000,
- 60.84,
- 0
- ],
- [
- 1784340000000,
- 68.77,
- 0
- ],
- [
- 1784343600000,
- 74.63,
- 0
- ],
- [
- 1784347200000,
- 74.38,
- 0
- ],
- [
- 1784350800000,
- 83.13,
- 0
- ],
- [
- 1784354400000,
- 88.99,
- 0
- ],
- [
- 1784358000000,
- 82.44,
- 0
- ],
- [
- 1784361600000,
- 80.0,
- 0
- ],
- [
- 1784365200000,
- 76.98,
- 0
- ],
- [
- 1784368800000,
- 78.15,
- 0
- ],
- [
- 1784372400000,
- 78.29,
- 0
- ],
- [
- 1784376000000,
- 79.1,
- 0
- ],
- [
- 1784379600000,
- 78.93,
- 0
- ],
- [
- 1784383200000,
- 75.44,
- 0
- ],
- [
- 1784386800000,
- 68.97,
- 0
- ],
- [
- 1784390400000,
- 60.63,
- 0
- ],
- [
- 1784394000000,
- 58.71,
- 0
- ],
- [
- 1784397600000,
- 57.65,
- 0
- ],
- [
- 1784401200000,
- 56.48,
- 0
- ],
- [
- 1784404800000,
- 55.33,
- 0
- ],
- [
- 1784408400000,
- 55.72,
- 0
- ],
- [
- 1784412000000,
- 52.81,
- 0
- ],
- [
- 1784415600000,
- 55.38,
- 0
- ],
- [
- 1784419200000,
- 56.79,
- 0
- ],
- [
- 1784422800000,
- 60.39,
- 0
- ],
- [
- 1784426400000,
- 62.61,
- 0
- ],
- [
- 1784430000000,
- 64.99,
- 0
- ],
- [
- 1784433600000,
- 68.65,
- 0
- ],
- [
- 1784437200000,
- 68.73,
- 0
- ],
- [
- 1784440800000,
- 70.69,
- 0
- ],
- [
- 1784444400000,
- 74.07,
- 0
- ],
- [
- 1784448000000,
- 78.79,
- 0
- ],
- [
- 1784451600000,
- 79.36,
- 0
- ],
- [
- 1784455200000,
- 82.17,
- 0
- ],
- [
- 1784458800000,
- 82.1,
- 0
- ],
- [
- 1784462400000,
- 82.41,
- 0
- ],
- [
- 1784466000000,
- 80.84,
- 0
- ],
- [
- 1784469600000,
- 74.91,
- 0
- ],
- [
- 1784473200000,
- 71.71,
- 0
- ],
- [
- 1784476800000,
- 69.68,
- 0
- ],
- [
- 1784480400000,
- 67.71,
- 0
- ],
- [
- 1784484000000,
- 66.26,
- 0
- ],
- [
- 1784487600000,
- 60.34,
- 0
- ],
- [
- 1784491200000,
- 55.84,
- 0
- ],
- [
- 1784494800000,
- 51.04,
- 0
- ],
- [
- 1784498400000,
- 46.42,
- 0
- ],
- [
- 1784502000000,
- 48.67,
- 0
- ],
- [
- 1784505600000,
- 54.09,
- 0
- ],
- [
- 1784509200000,
- 55.88,
- 0
- ],
- [
- 1784512800000,
- 65.28,
- 0
- ],
- [
- 1784516400000,
- 70.87,
- 0
- ],
- [
- 1784520000000,
- 78.35,
- 0
- ],
- [
- 1784523600000,
- 76.51,
- 0
- ],
- [
- 1784527200000,
- 74.71,
- 0
- ],
- [
- 1784530800000,
- 84.14,
- 0
- ],
- [
- 1784534400000,
- 83.77,
- 0
- ],
- [
- 1784538000000,
- 93.91,
- 0
- ],
- [
- 1784541600000,
- 95.41,
- 0
- ],
- [
- 1784545200000,
- 94.26,
- 0
- ],
- [
- 1784548800000,
- 91.57,
- 0
- ],
- [
- 1784552400000,
- 79.34,
- 0
- ],
- [
- 1784556000000,
- 72.63,
- 0
- ],
- [
- 1784559600000,
- 67.52,
- 0
- ],
- [
- 1784563200000,
- 66.58,
- 0
- ],
- [
- 1784566800000,
- 65.41,
- 0
- ],
- [
- 1784570400000,
- 60.87,
- 0
- ],
- [
- 1784574000000,
- 56.34,
- 0
- ],
- [
- 1784577600000,
- 50.46,
- 0
- ],
- [
- 1784581200000,
- 48.92,
- 0
- ],
- [
- 1784584800000,
- 46.22,
- 0
- ],
- [
- 1784588400000,
- 44.86,
- 0
- ],
- [
- 1784592000000,
- 44.2,
- 0
- ],
- [
- 1784595600000,
- 50.49,
- 0
- ],
- [
- 1784599200000,
- 57.93,
- 0
- ],
- [
- 1784602800000,
- 61.07,
- 0
- ],
- [
- 1784606400000,
- 65.42,
- 0
- ],
- [
- 1784610000000,
- 67.1,
- 0
- ],
- [
- 1784613600000,
- 68.49,
- 0
- ],
- [
- 1784617200000,
- 69.68,
- 0
- ],
- [
- 1784620800000,
- 71.82,
- 0
- ],
- [
- 1784624400000,
- 73.67,
- 0
- ],
- [
- 1784628000000,
- 69.67,
- 0
- ],
- [
- 1784631600000,
- 78.31,
- 0
- ],
- [
- 1784635200000,
- 86.49,
- 0
- ],
- [
- 1784638800000,
- 71.94,
- 0
- ],
- [
- 1784642400000,
- 66.14,
- 0
- ],
- [
- 1784646000000,
- 63.17,
- 0
- ],
- [
- 1784649600000,
- 60.98,
- 0
- ],
- [
- 1784653200000,
- 56.39,
- 0
- ],
- [
- 1784656800000,
- 54.66,
- 0
- ],
- [
- 1784660400000,
- 53.61,
- 0
- ],
- [
- 1784664000000,
- 51.95,
- 0
- ],
- [
- 1784667600000,
- 53.51,
- 0
- ],
- [
- 1784671200000,
- 55.27,
- 0
- ],
- [
- 1784674800000,
- 52.58,
- 0
- ],
- [
- 1784678400000,
- 50.05,
- 0
- ],
- [
- 1784682000000,
- 56.72,
- 0
- ],
- [
- 1784685600000,
- 64.88,
- 0
- ],
- [
- 1784689200000,
- 69.04,
- 0
- ],
- [
- 1784692800000,
- 62.57,
- 0
- ],
- [
- 1784696400000,
- 67.56,
- 0
- ],
- [
- 1784700000000,
- 67.03,
- 0
- ],
- [
- 1784703600000,
- 63.03,
- 0
- ],
- [
- 1784707200000,
- 66.31,
- 0
- ],
- [
- 1784710800000,
- 63.62,
- 0
- ],
- [
- 1784714400000,
- 64.09,
- 0
- ],
- [
- 1784718000000,
- 67.62,
- 0
- ],
- [
- 1784721600000,
- 71.34,
- 0
- ],
- [
- 1784725200000,
- 70.41,
- 0
- ],
- [
- 1784728800000,
- 66.99,
- 0
- ],
- [
- 1784732400000,
- 65.63,
- 0
- ],
- [
- 1784736000000,
- 61.82,
- 0
- ],
- [
- 1784739600000,
- 58.2,
- 0
- ],
- [
- 1784743200000,
- 52.72,
- 0
- ],
- [
- 1784746800000,
- 45.46,
- 0
- ],
- [
- 1784750400000,
- 48.0,
- 0
- ],
- [
- 1784754000000,
- 45.15,
- 0
- ],
- [
- 1784757600000,
- 43.69,
- 0
- ],
- [
- 1784761200000,
- 43.43,
- 0
- ],
- [
- 1784764800000,
- 42.87,
- 0
- ],
- [
- 1784768400000,
- 48.04,
- 0
- ],
- [
- 1784772000000,
- 53.39,
- 0
- ],
- [
- 1784775600000,
- 61.27,
- 0
- ],
- [
- 1784779200000,
- 69.68,
- 0
- ],
- [
- 1784782800000,
- 75.11,
- 0
- ],
- [
- 1784786400000,
- 75.37,
- 0
- ],
- [
- 1784790000000,
- 76.95,
- 0
- ],
- [
- 1784793600000,
- 72.43,
- 0
- ],
- [
- 1784797200000,
- 72.72,
- 0
- ],
- [
- 1784800800000,
- 73.94,
- 0
- ],
- [
- 1784804400000,
- 79.53,
- 0
- ],
- [
- 1784808000000,
- 80.56,
- 0
- ],
- [
- 1784811600000,
- 79.32,
- 0
- ],
- [
- 1784815200000,
- 74.03,
- 0
- ],
- [
- 1784818800000,
- 67.24,
- 0
- ],
- [
- 1784822400000,
- 62.03,
- 0
- ],
- [
- 1784826000000,
- 57.74,
- 0
- ],
- [
- 1784829600000,
- 55.0,
- 0
- ],
- [
- 1784833200000,
- 50.04,
- 0
- ],
- [
- 1784836800000,
- 49.57,
- 0
- ],
- [
- 1784840400000,
- 47.54,
- 0
- ],
- [
- 1784844000000,
- 45.29,
- 0
- ],
- [
- 1784847600000,
- 46.6,
- 0
- ],
- [
- 1784851200000,
- 48.65,
- 0
- ],
- [
- 1784854800000,
- 51.54,
- 0
- ],
- [
- 1784858400000,
- 59.03,
- 0
- ],
- [
- 1784862000000,
- 72.1,
- 0
- ],
- [
- 1784865600000,
- 64.51,
- 0
- ],
- [
- 1784869200000,
- 69.84,
- 0
- ],
- [
- 1784872800000,
- 79.01,
- 0
- ],
- [
- 1784876400000,
- 75.26,
- 0
- ],
- [
- 1784880000000,
- 79.81,
- 0
- ],
- [
- 1784883600000,
- 80.02,
- 0
- ],
- [
- 1784887200000,
- 81.3,
- 0
- ],
- [
- 1784890800000,
- 82.4,
- 0
- ],
- [
- 1784894400000,
- 80.53,
- 0
- ],
- [
- 1784898000000,
- 78.86,
- 0
- ],
- [
- 1784901600000,
- 79.74,
- 0
- ],
- [
- 1784905200000,
- 75.73,
- 0
- ],
- [
- 1784908800000,
- 76.97,
- 0
- ],
- [
- 1784912400000,
- 76.57,
- 0
- ],
- [
- 1784916000000,
- 71.79,
- 0
- ],
- [
- 1784919600000,
- 66.52,
- 0
- ],
- [
- 1784923200000,
- 65.32,
- 0
- ],
- [
- 1784926800000,
- 67.11,
- 0
- ],
- [
- 1784930400000,
- 70.68,
- 0
- ],
- [
- 1784934000000,
- 70.62,
- 0
- ],
- [
- 1784937600000,
- 73.57,
- 0
- ],
- [
- 1784941200000,
- 76.56,
- 0
- ],
- [
- 1784944800000,
- 81.57,
- 0
- ],
- [
- 1784948400000,
- 84.27,
- 0
- ],
- [
- 1784952000000,
- 82.38,
- 0
- ],
- [
- 1784955600000,
- 82.92,
- 0
- ],
- [
- 1784959200000,
- 82.69,
- 0
- ],
- [
- 1784962800000,
- 84.55,
- 0
- ],
- [
- 1784966400000,
- 83.05,
- 0
- ],
- [
- 1784970000000,
- 90.92,
- 0
- ],
- [
- 1784973600000,
- 90.72,
- 0
- ],
- [
- 1784977200000,
- 88.09,
- 0
- ],
- [
- 1784980800000,
- 84.36,
- 0
- ],
- [
- 1784984400000,
- 80.35,
- 0
- ],
- [
- 1784988000000,
- 75.04,
- 0
- ],
- [
- 1784991600000,
- 69.63,
- 0
- ],
- [
- 1784995200000,
- 65.78,
- 0
- ],
- [
- 1784998800000,
- 60.19,
- 0
- ],
- [
- 1785002400000,
- 56.93,
- 0
- ],
- [
- 1785006000000,
- 53.72,
- 0
- ],
- [
- 1785009600000,
- 52.22,
- 0
- ],
- [
- 1785013200000,
- 52.73,
- 0
- ],
- [
- 1785016800000,
- 49.32,
- 0
- ],
- [
- 1785020400000,
- 47.05,
- 0
- ],
- [
- 1785024000000,
- 47.57,
- 0
- ],
- [
- 1785027600000,
- 49.6,
- 0
- ],
- [
- 1785031200000,
- 57.22,
- 0
- ],
- [
- 1785034800000,
- 61.48,
- 0
- ],
- [
- 1785038400000,
- 63.66,
- 0
- ],
- [
- 1785042000000,
- 64.0,
- 0
- ],
- [
- 1785045600000,
- 62.95,
- 0
- ],
- [
- 1785049200000,
- 61.03,
- 0
- ],
- [
- 1785052800000,
- 59.72,
- 0
- ],
- [
- 1785056400000,
- 59.76,
- 0
- ],
- [
- 1785060000000,
- 63.2,
- 0
- ],
- [
- 1785063600000,
- 61.73,
- 0
- ],
- [
- 1785067200000,
- 61.49,
- 0
- ],
- [
- 1785070800000,
- 62.59,
- 0
- ],
- [
- 1785074400000,
- 61.37,
- 0
- ],
- [
- 1785078000000,
- 60.46,
- 0
- ],
- [
- 1785081600000,
- 56.23,
- 0
- ],
- [
- 1785085200000,
- 54.1,
- 0
- ],
- [
- 1785088800000,
- 55.66,
- 0
- ],
- [
- 1785092400000,
- 49.64,
- 0
- ],
- [
- 1785096000000,
- 44.96,
- 0
- ],
- [
- 1785099600000,
- 39.85,
- 0
- ],
- [
- 1785103200000,
- 38.43,
- 0
- ],
- [
- 1785106800000,
- 42.86,
- 0
- ],
- [
- 1785110400000,
- 41.09,
- 0
- ],
- [
- 1785114000000,
- 44.47,
- 0
- ],
- [
- 1785117600000,
- 50.5,
- 0
- ],
- [
- 1785121200000,
- 55.22,
- 0
- ],
- [
- 1785124800000,
- 54.92,
- 0
- ],
- [
- 1785128400000,
- 56.88,
- 0
- ],
- [
- 1785132000000,
- 58.54,
- 0
- ],
- [
- 1785135600000,
- 58.24,
- 0
- ],
- [
- 1785139200000,
- 60.4,
- 0
- ],
- [
- 1785142800000,
- 62.1,
- 0
- ],
- [
- 1785146400000,
- 61.68,
- 0
- ],
- [
- 1785150000000,
- 63.77,
- 0
- ],
- [
- 1785153600000,
- 69.87,
- 0
- ],
- [
- 1785157200000,
- 62.68,
- 0
- ],
- [
- 1785160800000,
- 58.84,
- 0
- ],
- [
- 1785164400000,
- 54.95,
- 0
- ],
- [
- 1785168000000,
- 49.31,
- 0
- ],
- [
- 1785171600000,
- 45.92,
- 0
- ],
- [
- 1785175200000,
- 44.73,
- 0
- ],
- [
- 1785178800000,
- 36.11,
- 0
- ],
- [
- 1785182400000,
- 37.05,
- 0
- ],
- [
- 1785186000000,
- 37.87,
- 0
- ],
- [
- 1785189600000,
- 37.18,
- 0
- ],
- [
- 1785193200000,
- 35.33,
- 0
- ],
- [
- 1785196800000,
- 36.14,
- 0
- ],
- [
- 1785200400000,
- 38.65,
- 0
- ],
- [
- 1785204000000,
- 45.32,
- 0
- ],
- [
- 1785207600000,
- 53.07,
- 0
- ],
- [
- 1785211200000,
- 52.34,
- 0
- ],
- [
- 1785214800000,
- 54.3,
- 0
- ],
- [
- 1785218400000,
- 52.41,
- 0
- ],
- [
- 1785222000000,
- 58.26,
- 0
- ],
- [
- 1785225600000,
- 62.29,
- 0
- ],
- [
- 1785229200000,
- 62.39,
- 0
- ],
- [
- 1785232800000,
- 61.62,
- 0
- ],
- [
- 1785236400000,
- 60.87,
- 0
- ],
- [
- 1785240000000,
- 62.82,
- 0
- ],
- [
- 1785243600000,
- 65.0,
- 0
- ],
- [
- 1785247200000,
- 64.9,
- 0
- ],
- [
- 1785250800000,
- 63.74,
- 0
- ],
- [
- 1785254400000,
- 62.12,
- 0
- ],
- [
- 1785258000000,
- 60.83,
- 0
- ],
- [
- 1785261600000,
- 57.32,
- 0
- ],
- [
- 1785265200000,
- 56.55,
- 0
- ],
- [
- 1785268800000,
- 59.53,
- 0
- ],
- [
- 1785272400000,
- 60.13,
- 0
- ],
- [
- 1785276000000,
- 50.41,
- 0
- ],
- [
- 1785279600000,
- 45.68,
- 0
- ],
- [
- 1785283200000,
- 50.05,
- 0
- ],
- [
- 1785286800000,
- 54.45,
- 0
- ],
- [
- 1785290400000,
- 67.25,
- 0
- ],
- [
- 1785294000000,
- 78.3,
- 0
- ],
- [
- 1785297600000,
- 79.63,
- 0
- ],
- [
- 1785301200000,
- 74.21,
- 0
- ],
- [
- 1785304800000,
- 64.22,
- 0
- ],
- [
- 1785308400000,
- 80.54,
- 0
- ],
- [
- 1785312000000,
- 74.37,
- 0
- ],
- [
- 1785315600000,
- 66.57,
- 0
- ],
- [
- 1785319200000,
- 74.43,
- 0
- ],
- [
- 1785322800000,
- 63.69,
- 0
- ],
- [
- 1785326400000,
- 64.46,
- 0
- ],
- [
- 1785330000000,
- 66.62,
- 0
- ],
- [
- 1785333600000,
- 65.72,
- 0
- ],
- [
- 1785337200000,
- 63.59,
- 0
- ],
- [
- 1785340800000,
- 62.27,
- 0
- ],
- [
- 1785344400000,
- 58.62,
- 0
- ],
- [
- 1785348000000,
- 51.6,
- 0
- ],
- [
- 1785351600000,
- 48.06,
- 0
- ],
- [
- 1785355200000,
- 48.04,
- 0
- ],
- [
- 1785358800000,
- 47.36,
- 0
- ],
- [
- 1785362400000,
- 50.19,
- 0
- ],
- [
- 1785366000000,
- 62.68,
- 0
- ],
- [
- 1785369600000,
- 68.36,
- 0
- ],
- [
- 1785373200000,
- 71.28,
- 0
- ],
- [
- 1785376800000,
- 89.68,
- 0
- ],
- [
- 1785380400000,
- 94.83,
- 0
- ],
- [
- 1785384000000,
- 90.27,
- 0
- ],
- [
- 1785387600000,
- 93.56,
- 0
- ],
- [
- 1785391200000,
- 94.23,
- 0
- ],
- [
- 1785394800000,
- 99.19,
- 0
- ],
- [
- 1785398400000,
- 100.03,
- 0
- ]
- ]
-}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%25-Humidity.Inst.1Hour.0.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%25-Humidity.Inst.1Hour.0.Ccp-Rev.json
new file mode 100644
index 000000000..af3f33ea4
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%25-Humidity.Inst.1Hour.0.Ccp-Rev.json
@@ -0,0 +1,10473 @@
+{
+ "begin": "2026-06-01T00:00:00+00:00",
+ "date-version-type": "UNVERSIONED",
+ "end": "2026-08-26T23:00:00+00:00",
+ "interval": "PT1H",
+ "interval-offset": 0,
+ "name": "EUFA.%-Humidity.Inst.1Hour.0.Ccp-Rev",
+ "office-id": "SWT",
+ "page": "MTc4MTQ4MTYwMDAwMHx8MzM3fHwzMDAwMDA=",
+ "page-size": 300000,
+ "time-zone": "US/Central",
+ "total": 2088,
+ "units": "%",
+ "value-columns": [
+ {
+ "name": "date-time",
+ "ordinal": 1,
+ "datatype": "java.sql.Timestamp"
+ },
+ {
+ "name": "value",
+ "ordinal": 2,
+ "datatype": "java.lang.Double"
+ },
+ {
+ "name": "quality-code",
+ "ordinal": 3,
+ "datatype": "int"
+ }
+ ],
+ "values": [
+ [
+ 1780272000000,
+ 53.76,
+ 0
+ ],
+ [
+ 1780275600000,
+ 59.26,
+ 0
+ ],
+ [
+ 1780279200000,
+ 63.82,
+ 0
+ ],
+ [
+ 1780282800000,
+ 71.71,
+ 0
+ ],
+ [
+ 1780286400000,
+ 79.78,
+ 0
+ ],
+ [
+ 1780290000000,
+ 84.94,
+ 0
+ ],
+ [
+ 1780293600000,
+ 77.03,
+ 0
+ ],
+ [
+ 1780297200000,
+ 80.15,
+ 0
+ ],
+ [
+ 1780300800000,
+ 83.04,
+ 0
+ ],
+ [
+ 1780304400000,
+ 79.4,
+ 0
+ ],
+ [
+ 1780308000000,
+ 82.83,
+ 0
+ ],
+ [
+ 1780311600000,
+ 82.77,
+ 0
+ ],
+ [
+ 1780315200000,
+ 84.38,
+ 0
+ ],
+ [
+ 1780318800000,
+ 83.85,
+ 0
+ ],
+ [
+ 1780322400000,
+ 80.24,
+ 0
+ ],
+ [
+ 1780326000000,
+ 76.46,
+ 0
+ ],
+ [
+ 1780329600000,
+ 68.74,
+ 0
+ ],
+ [
+ 1780333200000,
+ 64.25,
+ 0
+ ],
+ [
+ 1780336800000,
+ 62.12,
+ 0
+ ],
+ [
+ 1780340400000,
+ 64.26,
+ 0
+ ],
+ [
+ 1780344000000,
+ 63.97,
+ 0
+ ],
+ [
+ 1780347600000,
+ 61.29,
+ 0
+ ],
+ [
+ 1780351200000,
+ 54.56,
+ 0
+ ],
+ [
+ 1780354800000,
+ 55.89,
+ 0
+ ],
+ [
+ 1780358400000,
+ 56.57,
+ 0
+ ],
+ [
+ 1780362000000,
+ 60.2,
+ 0
+ ],
+ [
+ 1780365600000,
+ 78.97,
+ 0
+ ],
+ [
+ 1780369200000,
+ 89.16,
+ 0
+ ],
+ [
+ 1780372800000,
+ 90.62,
+ 0
+ ],
+ [
+ 1780376400000,
+ 94.2,
+ 0
+ ],
+ [
+ 1780380000000,
+ 93.63,
+ 0
+ ],
+ [
+ 1780383600000,
+ 89.82,
+ 0
+ ],
+ [
+ 1780387200000,
+ 99.72,
+ 0
+ ],
+ [
+ 1780390800000,
+ 99.7,
+ 0
+ ],
+ [
+ 1780394400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780398000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780401600000,
+ 93.23,
+ 0
+ ],
+ [
+ 1780405200000,
+ 99.36,
+ 0
+ ],
+ [
+ 1780408800000,
+ 97.78,
+ 0
+ ],
+ [
+ 1780412400000,
+ 92.03,
+ 0
+ ],
+ [
+ 1780416000000,
+ 85.57,
+ 0
+ ],
+ [
+ 1780419600000,
+ 79.75,
+ 0
+ ],
+ [
+ 1780423200000,
+ 79.44,
+ 0
+ ],
+ [
+ 1780426800000,
+ 79.97,
+ 0
+ ],
+ [
+ 1780430400000,
+ 73.97,
+ 0
+ ],
+ [
+ 1780434000000,
+ 73.42,
+ 0
+ ],
+ [
+ 1780437600000,
+ 71.57,
+ 0
+ ],
+ [
+ 1780441200000,
+ 72.72,
+ 0
+ ],
+ [
+ 1780444800000,
+ 72.53,
+ 0
+ ],
+ [
+ 1780448400000,
+ 76.75,
+ 0
+ ],
+ [
+ 1780452000000,
+ 80.66,
+ 0
+ ],
+ [
+ 1780455600000,
+ 91.38,
+ 0
+ ],
+ [
+ 1780459200000,
+ 93.56,
+ 0
+ ],
+ [
+ 1780462800000,
+ 99.95,
+ 0
+ ],
+ [
+ 1780466400000,
+ 97.21,
+ 0
+ ],
+ [
+ 1780470000000,
+ 92.97,
+ 0
+ ],
+ [
+ 1780473600000,
+ 95.43,
+ 0
+ ],
+ [
+ 1780477200000,
+ 98.47,
+ 0
+ ],
+ [
+ 1780480800000,
+ 99.95,
+ 0
+ ],
+ [
+ 1780484400000,
+ 99.46,
+ 0
+ ],
+ [
+ 1780488000000,
+ 97.6,
+ 0
+ ],
+ [
+ 1780491600000,
+ 91.47,
+ 0
+ ],
+ [
+ 1780495200000,
+ 85.16,
+ 0
+ ],
+ [
+ 1780498800000,
+ 77.13,
+ 0
+ ],
+ [
+ 1780502400000,
+ 71.67,
+ 0
+ ],
+ [
+ 1780506000000,
+ 67.39,
+ 0
+ ],
+ [
+ 1780509600000,
+ 62.79,
+ 0
+ ],
+ [
+ 1780513200000,
+ 62.76,
+ 0
+ ],
+ [
+ 1780516800000,
+ 61.53,
+ 0
+ ],
+ [
+ 1780520400000,
+ 60.46,
+ 0
+ ],
+ [
+ 1780524000000,
+ 59.83,
+ 0
+ ],
+ [
+ 1780527600000,
+ 63.75,
+ 0
+ ],
+ [
+ 1780531200000,
+ 62.5,
+ 0
+ ],
+ [
+ 1780534800000,
+ 64.32,
+ 0
+ ],
+ [
+ 1780538400000,
+ 70.07,
+ 0
+ ],
+ [
+ 1780542000000,
+ 73.56,
+ 0
+ ],
+ [
+ 1780545600000,
+ 80.49,
+ 0
+ ],
+ [
+ 1780549200000,
+ 86.86,
+ 0
+ ],
+ [
+ 1780552800000,
+ 85.02,
+ 0
+ ],
+ [
+ 1780556400000,
+ 83.34,
+ 0
+ ],
+ [
+ 1780560000000,
+ 86.39,
+ 0
+ ],
+ [
+ 1780563600000,
+ 89.63,
+ 0
+ ],
+ [
+ 1780567200000,
+ 93.48,
+ 0
+ ],
+ [
+ 1780570800000,
+ 95.02,
+ 0
+ ],
+ [
+ 1780574400000,
+ 95.2,
+ 0
+ ],
+ [
+ 1780578000000,
+ 90.51,
+ 0
+ ],
+ [
+ 1780581600000,
+ 90.05,
+ 0
+ ],
+ [
+ 1780585200000,
+ 86.04,
+ 0
+ ],
+ [
+ 1780588800000,
+ 78.07,
+ 0
+ ],
+ [
+ 1780592400000,
+ 73.31,
+ 0
+ ],
+ [
+ 1780596000000,
+ 71.36,
+ 0
+ ],
+ [
+ 1780599600000,
+ 68.22,
+ 0
+ ],
+ [
+ 1780603200000,
+ 63.31,
+ 0
+ ],
+ [
+ 1780606800000,
+ 62.24,
+ 0
+ ],
+ [
+ 1780610400000,
+ 66.17,
+ 0
+ ],
+ [
+ 1780614000000,
+ 70.24,
+ 0
+ ],
+ [
+ 1780617600000,
+ 71.46,
+ 0
+ ],
+ [
+ 1780621200000,
+ 71.63,
+ 0
+ ],
+ [
+ 1780624800000,
+ 75.89,
+ 0
+ ],
+ [
+ 1780628400000,
+ 77.32,
+ 0
+ ],
+ [
+ 1780632000000,
+ 81.66,
+ 0
+ ],
+ [
+ 1780635600000,
+ 84.33,
+ 0
+ ],
+ [
+ 1780639200000,
+ 86.08,
+ 0
+ ],
+ [
+ 1780642800000,
+ 85.22,
+ 0
+ ],
+ [
+ 1780646400000,
+ 84.73,
+ 0
+ ],
+ [
+ 1780650000000,
+ 87.18,
+ 0
+ ],
+ [
+ 1780653600000,
+ 87.57,
+ 0
+ ],
+ [
+ 1780657200000,
+ 87.87,
+ 0
+ ],
+ [
+ 1780660800000,
+ 89.3,
+ 0
+ ],
+ [
+ 1780664400000,
+ 89.95,
+ 0
+ ],
+ [
+ 1780668000000,
+ 88.79,
+ 0
+ ],
+ [
+ 1780671600000,
+ 87.25,
+ 0
+ ],
+ [
+ 1780675200000,
+ 86.92,
+ 0
+ ],
+ [
+ 1780678800000,
+ 85.19,
+ 0
+ ],
+ [
+ 1780682400000,
+ 85.2,
+ 0
+ ],
+ [
+ 1780686000000,
+ 86.45,
+ 0
+ ],
+ [
+ 1780689600000,
+ 81.34,
+ 0
+ ],
+ [
+ 1780693200000,
+ 79.16,
+ 0
+ ],
+ [
+ 1780696800000,
+ 77.9,
+ 0
+ ],
+ [
+ 1780700400000,
+ 76.52,
+ 0
+ ],
+ [
+ 1780704000000,
+ 75.84,
+ 0
+ ],
+ [
+ 1780707600000,
+ 80.26,
+ 0
+ ],
+ [
+ 1780711200000,
+ 83.88,
+ 0
+ ],
+ [
+ 1780714800000,
+ 86.88,
+ 0
+ ],
+ [
+ 1780718400000,
+ 86.56,
+ 0
+ ],
+ [
+ 1780722000000,
+ 89.11,
+ 0
+ ],
+ [
+ 1780725600000,
+ 89.54,
+ 0
+ ],
+ [
+ 1780729200000,
+ 92.21,
+ 0
+ ],
+ [
+ 1780732800000,
+ 93.83,
+ 0
+ ],
+ [
+ 1780736400000,
+ 97.5,
+ 0
+ ],
+ [
+ 1780740000000,
+ 99.47,
+ 0
+ ],
+ [
+ 1780743600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780747200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780750800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780754400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780758000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780761600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780765200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780768800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780772400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780776000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780779600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780783200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780786800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780790400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780794000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780797600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780801200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780804800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780808400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780812000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780815600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780819200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780822800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780826400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780830000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780833600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780837200000,
+ 96.59,
+ 0
+ ],
+ [
+ 1780840800000,
+ 89.38,
+ 0
+ ],
+ [
+ 1780844400000,
+ 90.01,
+ 0
+ ],
+ [
+ 1780848000000,
+ 84.35,
+ 0
+ ],
+ [
+ 1780851600000,
+ 90.68,
+ 0
+ ],
+ [
+ 1780855200000,
+ 97.46,
+ 0
+ ],
+ [
+ 1780858800000,
+ 95.67,
+ 0
+ ],
+ [
+ 1780862400000,
+ 85.47,
+ 0
+ ],
+ [
+ 1780866000000,
+ 80.9,
+ 0
+ ],
+ [
+ 1780869600000,
+ 76.77,
+ 0
+ ],
+ [
+ 1780873200000,
+ 73.29,
+ 0
+ ],
+ [
+ 1780876800000,
+ 70.81,
+ 0
+ ],
+ [
+ 1780880400000,
+ 76.49,
+ 0
+ ],
+ [
+ 1780884000000,
+ 80.83,
+ 0
+ ],
+ [
+ 1780887600000,
+ 83.32,
+ 0
+ ],
+ [
+ 1780891200000,
+ 90.42,
+ 0
+ ],
+ [
+ 1780894800000,
+ 92.12,
+ 0
+ ],
+ [
+ 1780898400000,
+ 94.09,
+ 0
+ ],
+ [
+ 1780902000000,
+ 93.31,
+ 0
+ ],
+ [
+ 1780905600000,
+ 89.31,
+ 0
+ ],
+ [
+ 1780909200000,
+ 88.3,
+ 0
+ ],
+ [
+ 1780912800000,
+ 88.63,
+ 0
+ ],
+ [
+ 1780916400000,
+ 90.17,
+ 0
+ ],
+ [
+ 1780920000000,
+ 91.48,
+ 0
+ ],
+ [
+ 1780923600000,
+ 91.1,
+ 0
+ ],
+ [
+ 1780927200000,
+ 87.79,
+ 0
+ ],
+ [
+ 1780930800000,
+ 84.92,
+ 0
+ ],
+ [
+ 1780934400000,
+ 82.88,
+ 0
+ ],
+ [
+ 1780938000000,
+ 77.64,
+ 0
+ ],
+ [
+ 1780941600000,
+ 72.19,
+ 0
+ ],
+ [
+ 1780945200000,
+ 69.15,
+ 0
+ ],
+ [
+ 1780948800000,
+ 68.6,
+ 0
+ ],
+ [
+ 1780952400000,
+ 66.17,
+ 0
+ ],
+ [
+ 1780956000000,
+ 64.44,
+ 0
+ ],
+ [
+ 1780959600000,
+ 64.68,
+ 0
+ ],
+ [
+ 1780963200000,
+ 67.0,
+ 0
+ ],
+ [
+ 1780966800000,
+ 71.63,
+ 0
+ ],
+ [
+ 1780970400000,
+ 75.96,
+ 0
+ ],
+ [
+ 1780974000000,
+ 84.15,
+ 0
+ ],
+ [
+ 1780977600000,
+ 83.76,
+ 0
+ ],
+ [
+ 1780981200000,
+ 91.19,
+ 0
+ ],
+ [
+ 1780984800000,
+ 86.45,
+ 0
+ ],
+ [
+ 1780988400000,
+ 85.06,
+ 0
+ ],
+ [
+ 1780992000000,
+ 84.95,
+ 0
+ ],
+ [
+ 1780995600000,
+ 83.9,
+ 0
+ ],
+ [
+ 1780999200000,
+ 84.59,
+ 0
+ ],
+ [
+ 1781002800000,
+ 86.26,
+ 0
+ ],
+ [
+ 1781006400000,
+ 90.17,
+ 0
+ ],
+ [
+ 1781010000000,
+ 86.45,
+ 0
+ ],
+ [
+ 1781013600000,
+ 80.23,
+ 0
+ ],
+ [
+ 1781017200000,
+ 74.54,
+ 0
+ ],
+ [
+ 1781020800000,
+ 68.01,
+ 0
+ ],
+ [
+ 1781024400000,
+ 63.46,
+ 0
+ ],
+ [
+ 1781028000000,
+ 60.12,
+ 0
+ ],
+ [
+ 1781031600000,
+ 58.26,
+ 0
+ ],
+ [
+ 1781035200000,
+ 54.86,
+ 0
+ ],
+ [
+ 1781038800000,
+ 54.81,
+ 0
+ ],
+ [
+ 1781042400000,
+ 56.2,
+ 0
+ ],
+ [
+ 1781046000000,
+ 57.51,
+ 0
+ ],
+ [
+ 1781049600000,
+ 59.39,
+ 0
+ ],
+ [
+ 1781053200000,
+ 62.35,
+ 0
+ ],
+ [
+ 1781056800000,
+ 68.39,
+ 0
+ ],
+ [
+ 1781060400000,
+ 74.56,
+ 0
+ ],
+ [
+ 1781064000000,
+ 81.55,
+ 0
+ ],
+ [
+ 1781067600000,
+ 84.84,
+ 0
+ ],
+ [
+ 1781071200000,
+ 85.8,
+ 0
+ ],
+ [
+ 1781074800000,
+ 87.74,
+ 0
+ ],
+ [
+ 1781078400000,
+ 83.1,
+ 0
+ ],
+ [
+ 1781082000000,
+ 82.11,
+ 0
+ ],
+ [
+ 1781085600000,
+ 81.47,
+ 0
+ ],
+ [
+ 1781089200000,
+ 81.96,
+ 0
+ ],
+ [
+ 1781092800000,
+ 85.47,
+ 0
+ ],
+ [
+ 1781096400000,
+ 84.42,
+ 0
+ ],
+ [
+ 1781100000000,
+ 80.36,
+ 0
+ ],
+ [
+ 1781103600000,
+ 74.95,
+ 0
+ ],
+ [
+ 1781107200000,
+ 72.72,
+ 0
+ ],
+ [
+ 1781110800000,
+ 72.85,
+ 0
+ ],
+ [
+ 1781114400000,
+ 72.18,
+ 0
+ ],
+ [
+ 1781118000000,
+ 68.23,
+ 0
+ ],
+ [
+ 1781121600000,
+ 64.35,
+ 0
+ ],
+ [
+ 1781125200000,
+ 62.08,
+ 0
+ ],
+ [
+ 1781128800000,
+ 60.75,
+ 0
+ ],
+ [
+ 1781132400000,
+ 61.86,
+ 0
+ ],
+ [
+ 1781136000000,
+ 63.7,
+ 0
+ ],
+ [
+ 1781139600000,
+ 66.16,
+ 0
+ ],
+ [
+ 1781143200000,
+ 71.84,
+ 0
+ ],
+ [
+ 1781146800000,
+ 75.53,
+ 0
+ ],
+ [
+ 1781150400000,
+ 77.33,
+ 0
+ ],
+ [
+ 1781154000000,
+ 78.12,
+ 0
+ ],
+ [
+ 1781157600000,
+ 79.79,
+ 0
+ ],
+ [
+ 1781161200000,
+ 82.31,
+ 0
+ ],
+ [
+ 1781164800000,
+ 81.67,
+ 0
+ ],
+ [
+ 1781168400000,
+ 79.76,
+ 0
+ ],
+ [
+ 1781172000000,
+ 82.47,
+ 0
+ ],
+ [
+ 1781175600000,
+ 83.84,
+ 0
+ ],
+ [
+ 1781179200000,
+ 83.43,
+ 0
+ ],
+ [
+ 1781182800000,
+ 81.75,
+ 0
+ ],
+ [
+ 1781186400000,
+ 79.25,
+ 0
+ ],
+ [
+ 1781190000000,
+ 76.12,
+ 0
+ ],
+ [
+ 1781193600000,
+ 72.7,
+ 0
+ ],
+ [
+ 1781197200000,
+ 67.87,
+ 0
+ ],
+ [
+ 1781200800000,
+ 65.0,
+ 0
+ ],
+ [
+ 1781204400000,
+ 63.85,
+ 0
+ ],
+ [
+ 1781208000000,
+ 63.27,
+ 0
+ ],
+ [
+ 1781211600000,
+ 62.3,
+ 0
+ ],
+ [
+ 1781215200000,
+ 62.17,
+ 0
+ ],
+ [
+ 1781218800000,
+ 62.08,
+ 0
+ ],
+ [
+ 1781222400000,
+ 64.59,
+ 0
+ ],
+ [
+ 1781226000000,
+ 71.59,
+ 0
+ ],
+ [
+ 1781229600000,
+ 76.84,
+ 0
+ ],
+ [
+ 1781233200000,
+ 77.52,
+ 0
+ ],
+ [
+ 1781236800000,
+ 80.33,
+ 0
+ ],
+ [
+ 1781240400000,
+ 85.37,
+ 0
+ ],
+ [
+ 1781244000000,
+ 88.2,
+ 0
+ ],
+ [
+ 1781247600000,
+ 86.57,
+ 0
+ ],
+ [
+ 1781251200000,
+ 84.36,
+ 0
+ ],
+ [
+ 1781254800000,
+ 99.88,
+ 0
+ ],
+ [
+ 1781258400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781262000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781265600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781269200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781272800000,
+ 99.57,
+ 0
+ ],
+ [
+ 1781276400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781280000000,
+ 95.11,
+ 0
+ ],
+ [
+ 1781283600000,
+ 96.08,
+ 0
+ ],
+ [
+ 1781287200000,
+ 94.16,
+ 0
+ ],
+ [
+ 1781290800000,
+ 89.42,
+ 0
+ ],
+ [
+ 1781294400000,
+ 82.47,
+ 0
+ ],
+ [
+ 1781298000000,
+ 71.65,
+ 0
+ ],
+ [
+ 1781301600000,
+ 73.23,
+ 0
+ ],
+ [
+ 1781305200000,
+ 71.94,
+ 0
+ ],
+ [
+ 1781308800000,
+ 79.68,
+ 0
+ ],
+ [
+ 1781312400000,
+ 85.69,
+ 0
+ ],
+ [
+ 1781316000000,
+ 90.92,
+ 0
+ ],
+ [
+ 1781319600000,
+ 91.87,
+ 0
+ ],
+ [
+ 1781323200000,
+ 94.18,
+ 0
+ ],
+ [
+ 1781326800000,
+ 92.07,
+ 0
+ ],
+ [
+ 1781330400000,
+ 89.27,
+ 0
+ ],
+ [
+ 1781334000000,
+ 92.95,
+ 0
+ ],
+ [
+ 1781337600000,
+ 84.02,
+ 0
+ ],
+ [
+ 1781341200000,
+ 80.41,
+ 0
+ ],
+ [
+ 1781344800000,
+ 85.03,
+ 0
+ ],
+ [
+ 1781348400000,
+ 89.19,
+ 0
+ ],
+ [
+ 1781352000000,
+ 91.47,
+ 0
+ ],
+ [
+ 1781355600000,
+ 91.63,
+ 0
+ ],
+ [
+ 1781359200000,
+ 90.92,
+ 0
+ ],
+ [
+ 1781362800000,
+ 90.42,
+ 0
+ ],
+ [
+ 1781366400000,
+ 84.63,
+ 0
+ ],
+ [
+ 1781370000000,
+ 77.15,
+ 0
+ ],
+ [
+ 1781373600000,
+ 69.63,
+ 0
+ ],
+ [
+ 1781377200000,
+ 63.01,
+ 0
+ ],
+ [
+ 1781380800000,
+ 62.2,
+ 0
+ ],
+ [
+ 1781384400000,
+ 61.01,
+ 0
+ ],
+ [
+ 1781388000000,
+ 60.06,
+ 0
+ ],
+ [
+ 1781391600000,
+ 59.73,
+ 0
+ ],
+ [
+ 1781395200000,
+ 63.09,
+ 0
+ ],
+ [
+ 1781398800000,
+ 68.49,
+ 0
+ ],
+ [
+ 1781402400000,
+ 75.24,
+ 0
+ ],
+ [
+ 1781406000000,
+ 80.72,
+ 0
+ ],
+ [
+ 1781409600000,
+ 78.2,
+ 0
+ ],
+ [
+ 1781413200000,
+ 75.2,
+ 0
+ ],
+ [
+ 1781416800000,
+ 75.79,
+ 0
+ ],
+ [
+ 1781420400000,
+ 74.49,
+ 0
+ ],
+ [
+ 1781424000000,
+ 94.55,
+ 0
+ ],
+ [
+ 1781427600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781431200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781434800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781438400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781442000000,
+ 99.99,
+ 0
+ ],
+ [
+ 1781445600000,
+ 99.14,
+ 0
+ ],
+ [
+ 1781449200000,
+ 92.33,
+ 0
+ ],
+ [
+ 1781452800000,
+ 87.89,
+ 0
+ ],
+ [
+ 1781456400000,
+ 87.61,
+ 0
+ ],
+ [
+ 1781460000000,
+ 85.63,
+ 0
+ ],
+ [
+ 1781463600000,
+ 82.82,
+ 0
+ ],
+ [
+ 1781467200000,
+ 81.79,
+ 0
+ ],
+ [
+ 1781470800000,
+ 80.5,
+ 0
+ ],
+ [
+ 1781474400000,
+ 80.35,
+ 0
+ ],
+ [
+ 1781478000000,
+ 77.18,
+ 0
+ ],
+ [
+ 1781481600000,
+ 74.55,
+ 0
+ ],
+ [
+ 1781485200000,
+ 75.7,
+ 0
+ ],
+ [
+ 1781488800000,
+ 81.34,
+ 0
+ ],
+ [
+ 1781492400000,
+ 83.08,
+ 0
+ ],
+ [
+ 1781496000000,
+ 83.95,
+ 0
+ ],
+ [
+ 1781499600000,
+ 86.77,
+ 0
+ ],
+ [
+ 1781503200000,
+ 88.75,
+ 0
+ ],
+ [
+ 1781506800000,
+ 87.53,
+ 0
+ ],
+ [
+ 1781510400000,
+ 86.1,
+ 0
+ ],
+ [
+ 1781514000000,
+ 83.33,
+ 0
+ ],
+ [
+ 1781517600000,
+ 81.04,
+ 0
+ ],
+ [
+ 1781521200000,
+ 79.65,
+ 0
+ ],
+ [
+ 1781524800000,
+ 83.46,
+ 0
+ ],
+ [
+ 1781528400000,
+ 82.62,
+ 0
+ ],
+ [
+ 1781532000000,
+ 76.82,
+ 0
+ ],
+ [
+ 1781535600000,
+ 69.41,
+ 0
+ ],
+ [
+ 1781539200000,
+ 61.36,
+ 0
+ ],
+ [
+ 1781542800000,
+ 53.7,
+ 0
+ ],
+ [
+ 1781546400000,
+ 48.8,
+ 0
+ ],
+ [
+ 1781550000000,
+ 47.8,
+ 0
+ ],
+ [
+ 1781553600000,
+ 46.83,
+ 0
+ ],
+ [
+ 1781557200000,
+ 49.62,
+ 0
+ ],
+ [
+ 1781560800000,
+ 48.71,
+ 0
+ ],
+ [
+ 1781564400000,
+ 49.5,
+ 0
+ ],
+ [
+ 1781568000000,
+ 53.18,
+ 0
+ ],
+ [
+ 1781571600000,
+ 54.83,
+ 0
+ ],
+ [
+ 1781575200000,
+ 70.28,
+ 0
+ ],
+ [
+ 1781578800000,
+ 81.57,
+ 0
+ ],
+ [
+ 1781582400000,
+ 88.56,
+ 0
+ ],
+ [
+ 1781586000000,
+ 83.93,
+ 0
+ ],
+ [
+ 1781589600000,
+ 88.91,
+ 0
+ ],
+ [
+ 1781593200000,
+ 95.89,
+ 0
+ ],
+ [
+ 1781596800000,
+ 94.87,
+ 0
+ ],
+ [
+ 1781600400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781604000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781607600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781611200000,
+ 100.01,
+ 0
+ ],
+ [
+ 1781614800000,
+ 94.57,
+ 0
+ ],
+ [
+ 1781618400000,
+ 86.31,
+ 0
+ ],
+ [
+ 1781622000000,
+ 83.42,
+ 0
+ ],
+ [
+ 1781625600000,
+ 76.68,
+ 0
+ ],
+ [
+ 1781629200000,
+ 74.1,
+ 0
+ ],
+ [
+ 1781632800000,
+ 68.81,
+ 0
+ ],
+ [
+ 1781636400000,
+ 64.82,
+ 0
+ ],
+ [
+ 1781640000000,
+ 59.15,
+ 0
+ ],
+ [
+ 1781643600000,
+ 52.92,
+ 0
+ ],
+ [
+ 1781647200000,
+ 52.53,
+ 0
+ ],
+ [
+ 1781650800000,
+ 53.66,
+ 0
+ ],
+ [
+ 1781654400000,
+ 57.37,
+ 0
+ ],
+ [
+ 1781658000000,
+ 62.93,
+ 0
+ ],
+ [
+ 1781661600000,
+ 72.56,
+ 0
+ ],
+ [
+ 1781665200000,
+ 76.01,
+ 0
+ ],
+ [
+ 1781668800000,
+ 80.42,
+ 0
+ ],
+ [
+ 1781672400000,
+ 86.31,
+ 0
+ ],
+ [
+ 1781676000000,
+ 85.98,
+ 0
+ ],
+ [
+ 1781679600000,
+ 87.03,
+ 0
+ ],
+ [
+ 1781683200000,
+ 87.91,
+ 0
+ ],
+ [
+ 1781686800000,
+ 88.49,
+ 0
+ ],
+ [
+ 1781690400000,
+ 88.86,
+ 0
+ ],
+ [
+ 1781694000000,
+ 92.91,
+ 0
+ ],
+ [
+ 1781697600000,
+ 91.48,
+ 0
+ ],
+ [
+ 1781701200000,
+ 90.56,
+ 0
+ ],
+ [
+ 1781704800000,
+ 86.86,
+ 0
+ ],
+ [
+ 1781708400000,
+ 79.9,
+ 0
+ ],
+ [
+ 1781712000000,
+ 70.72,
+ 0
+ ],
+ [
+ 1781715600000,
+ 66.77,
+ 0
+ ],
+ [
+ 1781719200000,
+ 64.7,
+ 0
+ ],
+ [
+ 1781722800000,
+ 63.03,
+ 0
+ ],
+ [
+ 1781726400000,
+ 60.45,
+ 0
+ ],
+ [
+ 1781730000000,
+ 59.5,
+ 0
+ ],
+ [
+ 1781733600000,
+ 60.19,
+ 0
+ ],
+ [
+ 1781737200000,
+ 61.0,
+ 0
+ ],
+ [
+ 1781740800000,
+ 62.49,
+ 0
+ ],
+ [
+ 1781744400000,
+ 66.03,
+ 0
+ ],
+ [
+ 1781748000000,
+ 71.15,
+ 0
+ ],
+ [
+ 1781751600000,
+ 79.06,
+ 0
+ ],
+ [
+ 1781755200000,
+ 85.35,
+ 0
+ ],
+ [
+ 1781758800000,
+ 83.23,
+ 0
+ ],
+ [
+ 1781762400000,
+ 80.29,
+ 0
+ ],
+ [
+ 1781766000000,
+ 84.5,
+ 0
+ ],
+ [
+ 1781769600000,
+ 92.42,
+ 0
+ ],
+ [
+ 1781773200000,
+ 94.92,
+ 0
+ ],
+ [
+ 1781776800000,
+ 98.09,
+ 0
+ ],
+ [
+ 1781780400000,
+ 99.89,
+ 0
+ ],
+ [
+ 1781784000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781787600000,
+ 98.97,
+ 0
+ ],
+ [
+ 1781791200000,
+ 89.96,
+ 0
+ ],
+ [
+ 1781794800000,
+ 81.09,
+ 0
+ ],
+ [
+ 1781798400000,
+ 71.69,
+ 0
+ ],
+ [
+ 1781802000000,
+ 70.22,
+ 0
+ ],
+ [
+ 1781805600000,
+ 69.42,
+ 0
+ ],
+ [
+ 1781809200000,
+ 69.96,
+ 0
+ ],
+ [
+ 1781812800000,
+ 67.23,
+ 0
+ ],
+ [
+ 1781816400000,
+ 67.43,
+ 0
+ ],
+ [
+ 1781820000000,
+ 74.68,
+ 0
+ ],
+ [
+ 1781823600000,
+ 71.11,
+ 0
+ ],
+ [
+ 1781827200000,
+ 61.9,
+ 0
+ ],
+ [
+ 1781830800000,
+ 60.9,
+ 0
+ ],
+ [
+ 1781834400000,
+ 58.56,
+ 0
+ ],
+ [
+ 1781838000000,
+ 57.66,
+ 0
+ ],
+ [
+ 1781841600000,
+ 65.95,
+ 0
+ ],
+ [
+ 1781845200000,
+ 74.39,
+ 0
+ ],
+ [
+ 1781848800000,
+ 85.23,
+ 0
+ ],
+ [
+ 1781852400000,
+ 88.97,
+ 0
+ ],
+ [
+ 1781856000000,
+ 82.01,
+ 0
+ ],
+ [
+ 1781859600000,
+ 76.72,
+ 0
+ ],
+ [
+ 1781863200000,
+ 80.21,
+ 0
+ ],
+ [
+ 1781866800000,
+ 75.9,
+ 0
+ ],
+ [
+ 1781870400000,
+ 83.24,
+ 0
+ ],
+ [
+ 1781874000000,
+ 85.17,
+ 0
+ ],
+ [
+ 1781877600000,
+ 83.15,
+ 0
+ ],
+ [
+ 1781881200000,
+ 80.57,
+ 0
+ ],
+ [
+ 1781884800000,
+ 81.97,
+ 0
+ ],
+ [
+ 1781888400000,
+ 81.8,
+ 0
+ ],
+ [
+ 1781892000000,
+ 76.91,
+ 0
+ ],
+ [
+ 1781895600000,
+ 80.23,
+ 0
+ ],
+ [
+ 1781899200000,
+ 77.7,
+ 0
+ ],
+ [
+ 1781902800000,
+ 76.81,
+ 0
+ ],
+ [
+ 1781906400000,
+ 77.55,
+ 0
+ ],
+ [
+ 1781910000000,
+ 78.34,
+ 0
+ ],
+ [
+ 1781913600000,
+ 77.11,
+ 0
+ ],
+ [
+ 1781917200000,
+ 79.26,
+ 0
+ ],
+ [
+ 1781920800000,
+ 81.64,
+ 0
+ ],
+ [
+ 1781924400000,
+ 92.55,
+ 0
+ ],
+ [
+ 1781928000000,
+ 93.76,
+ 0
+ ],
+ [
+ 1781931600000,
+ 96.92,
+ 0
+ ],
+ [
+ 1781935200000,
+ 98.86,
+ 0
+ ],
+ [
+ 1781938800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781942400000,
+ 100.0,
+ 0
+ ],
+ [
+ 1781946000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781949600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781953200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781956800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781960400000,
+ 99.96,
+ 0
+ ],
+ [
+ 1781964000000,
+ 96.29,
+ 0
+ ],
+ [
+ 1781967600000,
+ 90.59,
+ 0
+ ],
+ [
+ 1781971200000,
+ 81.21,
+ 0
+ ],
+ [
+ 1781974800000,
+ 79.67,
+ 0
+ ],
+ [
+ 1781978400000,
+ 76.29,
+ 0
+ ],
+ [
+ 1781982000000,
+ 72.61,
+ 0
+ ],
+ [
+ 1781985600000,
+ 69.7,
+ 0
+ ],
+ [
+ 1781989200000,
+ 66.24,
+ 0
+ ],
+ [
+ 1781992800000,
+ 62.58,
+ 0
+ ],
+ [
+ 1781996400000,
+ 62.31,
+ 0
+ ],
+ [
+ 1782000000000,
+ 64.83,
+ 0
+ ],
+ [
+ 1782003600000,
+ 70.3,
+ 0
+ ],
+ [
+ 1782007200000,
+ 76.98,
+ 0
+ ],
+ [
+ 1782010800000,
+ 81.28,
+ 0
+ ],
+ [
+ 1782014400000,
+ 81.39,
+ 0
+ ],
+ [
+ 1782018000000,
+ 87.71,
+ 0
+ ],
+ [
+ 1782021600000,
+ 89.01,
+ 0
+ ],
+ [
+ 1782025200000,
+ 91.46,
+ 0
+ ],
+ [
+ 1782028800000,
+ 89.05,
+ 0
+ ],
+ [
+ 1782032400000,
+ 88.16,
+ 0
+ ],
+ [
+ 1782036000000,
+ 87.64,
+ 0
+ ],
+ [
+ 1782039600000,
+ 90.44,
+ 0
+ ],
+ [
+ 1782043200000,
+ 91.88,
+ 0
+ ],
+ [
+ 1782046800000,
+ 88.34,
+ 0
+ ],
+ [
+ 1782050400000,
+ 80.34,
+ 0
+ ],
+ [
+ 1782054000000,
+ 77.72,
+ 0
+ ],
+ [
+ 1782057600000,
+ 76.74,
+ 0
+ ],
+ [
+ 1782061200000,
+ 70.22,
+ 0
+ ],
+ [
+ 1782064800000,
+ 67.37,
+ 0
+ ],
+ [
+ 1782068400000,
+ 66.14,
+ 0
+ ],
+ [
+ 1782072000000,
+ 63.37,
+ 0
+ ],
+ [
+ 1782075600000,
+ 63.74,
+ 0
+ ],
+ [
+ 1782079200000,
+ 62.05,
+ 0
+ ],
+ [
+ 1782082800000,
+ 61.61,
+ 0
+ ],
+ [
+ 1782086400000,
+ 64.32,
+ 0
+ ],
+ [
+ 1782090000000,
+ 68.55,
+ 0
+ ],
+ [
+ 1782093600000,
+ 76.69,
+ 0
+ ],
+ [
+ 1782097200000,
+ 87.02,
+ 0
+ ],
+ [
+ 1782100800000,
+ 89.15,
+ 0
+ ],
+ [
+ 1782104400000,
+ 88.67,
+ 0
+ ],
+ [
+ 1782108000000,
+ 87.87,
+ 0
+ ],
+ [
+ 1782111600000,
+ 86.79,
+ 0
+ ],
+ [
+ 1782115200000,
+ 86.29,
+ 0
+ ],
+ [
+ 1782118800000,
+ 85.61,
+ 0
+ ],
+ [
+ 1782122400000,
+ 96.13,
+ 0
+ ],
+ [
+ 1782126000000,
+ 99.76,
+ 0
+ ],
+ [
+ 1782129600000,
+ 99.88,
+ 0
+ ],
+ [
+ 1782133200000,
+ 97.86,
+ 0
+ ],
+ [
+ 1782136800000,
+ 96.22,
+ 0
+ ],
+ [
+ 1782140400000,
+ 88.25,
+ 0
+ ],
+ [
+ 1782144000000,
+ 79.98,
+ 0
+ ],
+ [
+ 1782147600000,
+ 72.49,
+ 0
+ ],
+ [
+ 1782151200000,
+ 73.65,
+ 0
+ ],
+ [
+ 1782154800000,
+ 74.07,
+ 0
+ ],
+ [
+ 1782158400000,
+ 69.45,
+ 0
+ ],
+ [
+ 1782162000000,
+ 65.56,
+ 0
+ ],
+ [
+ 1782165600000,
+ 62.38,
+ 0
+ ],
+ [
+ 1782169200000,
+ 58.86,
+ 0
+ ],
+ [
+ 1782172800000,
+ 66.17,
+ 0
+ ],
+ [
+ 1782176400000,
+ 77.99,
+ 0
+ ],
+ [
+ 1782180000000,
+ 83.63,
+ 0
+ ],
+ [
+ 1782183600000,
+ 88.31,
+ 0
+ ],
+ [
+ 1782187200000,
+ 89.76,
+ 0
+ ],
+ [
+ 1782190800000,
+ 91.84,
+ 0
+ ],
+ [
+ 1782194400000,
+ 92.86,
+ 0
+ ],
+ [
+ 1782198000000,
+ 93.29,
+ 0
+ ],
+ [
+ 1782201600000,
+ 97.91,
+ 0
+ ],
+ [
+ 1782205200000,
+ 99.9,
+ 0
+ ],
+ [
+ 1782208800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782212400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782216000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782219600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782223200000,
+ 97.77,
+ 0
+ ],
+ [
+ 1782226800000,
+ 95.07,
+ 0
+ ],
+ [
+ 1782230400000,
+ 94.61,
+ 0
+ ],
+ [
+ 1782234000000,
+ 95.57,
+ 0
+ ],
+ [
+ 1782237600000,
+ 90.53,
+ 0
+ ],
+ [
+ 1782241200000,
+ 85.46,
+ 0
+ ],
+ [
+ 1782244800000,
+ 89.96,
+ 0
+ ],
+ [
+ 1782248400000,
+ 94.7,
+ 0
+ ],
+ [
+ 1782252000000,
+ 99.86,
+ 0
+ ],
+ [
+ 1782255600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782259200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782262800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782266400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782270000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782273600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782277200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782280800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782284400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782288000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782291600000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782295200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782298800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782302400000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782306000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782309600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782313200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782316800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782320400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782324000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782327600000,
+ 99.66,
+ 0
+ ],
+ [
+ 1782331200000,
+ 92.7,
+ 0
+ ],
+ [
+ 1782334800000,
+ 89.65,
+ 0
+ ],
+ [
+ 1782338400000,
+ 90.35,
+ 0
+ ],
+ [
+ 1782342000000,
+ 92.25,
+ 0
+ ],
+ [
+ 1782345600000,
+ 90.48,
+ 0
+ ],
+ [
+ 1782349200000,
+ 92.39,
+ 0
+ ],
+ [
+ 1782352800000,
+ 94.59,
+ 0
+ ],
+ [
+ 1782356400000,
+ 98.61,
+ 0
+ ],
+ [
+ 1782360000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782363600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782367200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782370800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782374400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782378000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782381600000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782385200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782388800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782392400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782396000000,
+ 99.94,
+ 0
+ ],
+ [
+ 1782399600000,
+ 92.4,
+ 0
+ ],
+ [
+ 1782403200000,
+ 81.62,
+ 0
+ ],
+ [
+ 1782406800000,
+ 75.38,
+ 0
+ ],
+ [
+ 1782410400000,
+ 68.89,
+ 0
+ ],
+ [
+ 1782414000000,
+ 65.29,
+ 0
+ ],
+ [
+ 1782417600000,
+ 63.04,
+ 0
+ ],
+ [
+ 1782421200000,
+ 58.64,
+ 0
+ ],
+ [
+ 1782424800000,
+ 60.54,
+ 0
+ ],
+ [
+ 1782428400000,
+ 63.44,
+ 0
+ ],
+ [
+ 1782432000000,
+ 62.65,
+ 0
+ ],
+ [
+ 1782435600000,
+ 62.37,
+ 0
+ ],
+ [
+ 1782439200000,
+ 69.01,
+ 0
+ ],
+ [
+ 1782442800000,
+ 73.69,
+ 0
+ ],
+ [
+ 1782446400000,
+ 78.92,
+ 0
+ ],
+ [
+ 1782450000000,
+ 76.28,
+ 0
+ ],
+ [
+ 1782453600000,
+ 72.4,
+ 0
+ ],
+ [
+ 1782457200000,
+ 72.12,
+ 0
+ ],
+ [
+ 1782460800000,
+ 76.02,
+ 0
+ ],
+ [
+ 1782464400000,
+ 85.16,
+ 0
+ ],
+ [
+ 1782468000000,
+ 86.39,
+ 0
+ ],
+ [
+ 1782471600000,
+ 84.27,
+ 0
+ ],
+ [
+ 1782475200000,
+ 84.68,
+ 0
+ ],
+ [
+ 1782478800000,
+ 86.91,
+ 0
+ ],
+ [
+ 1782482400000,
+ 85.37,
+ 0
+ ],
+ [
+ 1782486000000,
+ 84.21,
+ 0
+ ],
+ [
+ 1782489600000,
+ 83.18,
+ 0
+ ],
+ [
+ 1782493200000,
+ 83.01,
+ 0
+ ],
+ [
+ 1782496800000,
+ 80.57,
+ 0
+ ],
+ [
+ 1782500400000,
+ 77.66,
+ 0
+ ],
+ [
+ 1782504000000,
+ 74.95,
+ 0
+ ],
+ [
+ 1782507600000,
+ 74.52,
+ 0
+ ],
+ [
+ 1782511200000,
+ 73.63,
+ 0
+ ],
+ [
+ 1782514800000,
+ 70.21,
+ 0
+ ],
+ [
+ 1782518400000,
+ 69.31,
+ 0
+ ],
+ [
+ 1782522000000,
+ 70.17,
+ 0
+ ],
+ [
+ 1782525600000,
+ 76.93,
+ 0
+ ],
+ [
+ 1782529200000,
+ 87.75,
+ 0
+ ],
+ [
+ 1782532800000,
+ 91.32,
+ 0
+ ],
+ [
+ 1782536400000,
+ 89.73,
+ 0
+ ],
+ [
+ 1782540000000,
+ 89.9,
+ 0
+ ],
+ [
+ 1782543600000,
+ 82.96,
+ 0
+ ],
+ [
+ 1782547200000,
+ 78.11,
+ 0
+ ],
+ [
+ 1782550800000,
+ 79.17,
+ 0
+ ],
+ [
+ 1782554400000,
+ 80.8,
+ 0
+ ],
+ [
+ 1782558000000,
+ 86.78,
+ 0
+ ],
+ [
+ 1782561600000,
+ 96.87,
+ 0
+ ],
+ [
+ 1782565200000,
+ 97.57,
+ 0
+ ],
+ [
+ 1782568800000,
+ 89.61,
+ 0
+ ],
+ [
+ 1782572400000,
+ 84.55,
+ 0
+ ],
+ [
+ 1782576000000,
+ 79.78,
+ 0
+ ],
+ [
+ 1782579600000,
+ 76.61,
+ 0
+ ],
+ [
+ 1782583200000,
+ 73.7,
+ 0
+ ],
+ [
+ 1782586800000,
+ 69.9,
+ 0
+ ],
+ [
+ 1782590400000,
+ 66.75,
+ 0
+ ],
+ [
+ 1782594000000,
+ 63.27,
+ 0
+ ],
+ [
+ 1782597600000,
+ 57.06,
+ 0
+ ],
+ [
+ 1782601200000,
+ 56.83,
+ 0
+ ],
+ [
+ 1782604800000,
+ 59.99,
+ 0
+ ],
+ [
+ 1782608400000,
+ 65.05,
+ 0
+ ],
+ [
+ 1782612000000,
+ 69.77,
+ 0
+ ],
+ [
+ 1782615600000,
+ 72.61,
+ 0
+ ],
+ [
+ 1782619200000,
+ 71.38,
+ 0
+ ],
+ [
+ 1782622800000,
+ 72.27,
+ 0
+ ],
+ [
+ 1782626400000,
+ 70.69,
+ 0
+ ],
+ [
+ 1782630000000,
+ 72.33,
+ 0
+ ],
+ [
+ 1782633600000,
+ 70.99,
+ 0
+ ],
+ [
+ 1782637200000,
+ 70.89,
+ 0
+ ],
+ [
+ 1782640800000,
+ 72.28,
+ 0
+ ],
+ [
+ 1782644400000,
+ 75.21,
+ 0
+ ],
+ [
+ 1782648000000,
+ 78.87,
+ 0
+ ],
+ [
+ 1782651600000,
+ 80.72,
+ 0
+ ],
+ [
+ 1782655200000,
+ 78.76,
+ 0
+ ],
+ [
+ 1782658800000,
+ 73.65,
+ 0
+ ],
+ [
+ 1782662400000,
+ 68.42,
+ 0
+ ],
+ [
+ 1782666000000,
+ 63.91,
+ 0
+ ],
+ [
+ 1782669600000,
+ 60.46,
+ 0
+ ],
+ [
+ 1782673200000,
+ 57.84,
+ 0
+ ],
+ [
+ 1782676800000,
+ 54.47,
+ 0
+ ],
+ [
+ 1782680400000,
+ 54.59,
+ 0
+ ],
+ [
+ 1782684000000,
+ 55.11,
+ 0
+ ],
+ [
+ 1782687600000,
+ 57.71,
+ 0
+ ],
+ [
+ 1782691200000,
+ 61.32,
+ 0
+ ],
+ [
+ 1782694800000,
+ 63.44,
+ 0
+ ],
+ [
+ 1782698400000,
+ 68.61,
+ 0
+ ],
+ [
+ 1782702000000,
+ 72.17,
+ 0
+ ],
+ [
+ 1782705600000,
+ 73.62,
+ 0
+ ],
+ [
+ 1782709200000,
+ 73.2,
+ 0
+ ],
+ [
+ 1782712800000,
+ 70.79,
+ 0
+ ],
+ [
+ 1782716400000,
+ 72.18,
+ 0
+ ],
+ [
+ 1782720000000,
+ 74.65,
+ 0
+ ],
+ [
+ 1782723600000,
+ 76.43,
+ 0
+ ],
+ [
+ 1782727200000,
+ 76.78,
+ 0
+ ],
+ [
+ 1782730800000,
+ 76.18,
+ 0
+ ],
+ [
+ 1782734400000,
+ 75.38,
+ 0
+ ],
+ [
+ 1782738000000,
+ 76.06,
+ 0
+ ],
+ [
+ 1782741600000,
+ 75.07,
+ 0
+ ],
+ [
+ 1782745200000,
+ 71.45,
+ 0
+ ],
+ [
+ 1782748800000,
+ 65.38,
+ 0
+ ],
+ [
+ 1782752400000,
+ 60.27,
+ 0
+ ],
+ [
+ 1782756000000,
+ 58.28,
+ 0
+ ],
+ [
+ 1782759600000,
+ 55.72,
+ 0
+ ],
+ [
+ 1782763200000,
+ 53.99,
+ 0
+ ],
+ [
+ 1782766800000,
+ 54.04,
+ 0
+ ],
+ [
+ 1782770400000,
+ 54.83,
+ 0
+ ],
+ [
+ 1782774000000,
+ 54.97,
+ 0
+ ],
+ [
+ 1782777600000,
+ 57.62,
+ 0
+ ],
+ [
+ 1782781200000,
+ 61.58,
+ 0
+ ],
+ [
+ 1782784800000,
+ 66.9,
+ 0
+ ],
+ [
+ 1782788400000,
+ 69.81,
+ 0
+ ],
+ [
+ 1782792000000,
+ 72.34,
+ 0
+ ],
+ [
+ 1782795600000,
+ 73.84,
+ 0
+ ],
+ [
+ 1782799200000,
+ 73.41,
+ 0
+ ],
+ [
+ 1782802800000,
+ 71.87,
+ 0
+ ],
+ [
+ 1782806400000,
+ 74.09,
+ 0
+ ],
+ [
+ 1782810000000,
+ 75.69,
+ 0
+ ],
+ [
+ 1782813600000,
+ 77.37,
+ 0
+ ],
+ [
+ 1782817200000,
+ 78.72,
+ 0
+ ],
+ [
+ 1782820800000,
+ 81.46,
+ 0
+ ],
+ [
+ 1782824400000,
+ 82.08,
+ 0
+ ],
+ [
+ 1782828000000,
+ 78.96,
+ 0
+ ],
+ [
+ 1782831600000,
+ 70.85,
+ 0
+ ],
+ [
+ 1782835200000,
+ 62.33,
+ 0
+ ],
+ [
+ 1782838800000,
+ 56.02,
+ 0
+ ],
+ [
+ 1782842400000,
+ 51.35,
+ 0
+ ],
+ [
+ 1782846000000,
+ 50.95,
+ 0
+ ],
+ [
+ 1782849600000,
+ 47.42,
+ 0
+ ],
+ [
+ 1782853200000,
+ 47.61,
+ 0
+ ],
+ [
+ 1782856800000,
+ 47.6,
+ 0
+ ],
+ [
+ 1782860400000,
+ 51.58,
+ 0
+ ],
+ [
+ 1782864000000,
+ 55.84,
+ 0
+ ],
+ [
+ 1782867600000,
+ 60.8,
+ 0
+ ],
+ [
+ 1782871200000,
+ 68.85,
+ 0
+ ],
+ [
+ 1782874800000,
+ 69.67,
+ 0
+ ],
+ [
+ 1782878400000,
+ 72.84,
+ 0
+ ],
+ [
+ 1782882000000,
+ 75.97,
+ 0
+ ],
+ [
+ 1782885600000,
+ 79.03,
+ 0
+ ],
+ [
+ 1782889200000,
+ 89.94,
+ 0
+ ],
+ [
+ 1782892800000,
+ 86.25,
+ 0
+ ],
+ [
+ 1782896400000,
+ 78.71,
+ 0
+ ],
+ [
+ 1782900000000,
+ 80.29,
+ 0
+ ],
+ [
+ 1782903600000,
+ 84.78,
+ 0
+ ],
+ [
+ 1782907200000,
+ 84.51,
+ 0
+ ],
+ [
+ 1782910800000,
+ 82.6,
+ 0
+ ],
+ [
+ 1782914400000,
+ 78.47,
+ 0
+ ],
+ [
+ 1782918000000,
+ 73.16,
+ 0
+ ],
+ [
+ 1782921600000,
+ 68.13,
+ 0
+ ],
+ [
+ 1782925200000,
+ 60.52,
+ 0
+ ],
+ [
+ 1782928800000,
+ 55.82,
+ 0
+ ],
+ [
+ 1782932400000,
+ 55.2,
+ 0
+ ],
+ [
+ 1782936000000,
+ 53.83,
+ 0
+ ],
+ [
+ 1782939600000,
+ 52.84,
+ 0
+ ],
+ [
+ 1782943200000,
+ 49.13,
+ 0
+ ],
+ [
+ 1782946800000,
+ 51.49,
+ 0
+ ],
+ [
+ 1782950400000,
+ 54.17,
+ 0
+ ],
+ [
+ 1782954000000,
+ 59.23,
+ 0
+ ],
+ [
+ 1782957600000,
+ 69.94,
+ 0
+ ],
+ [
+ 1782961200000,
+ 77.94,
+ 0
+ ],
+ [
+ 1782964800000,
+ 73.24,
+ 0
+ ],
+ [
+ 1782968400000,
+ 87.04,
+ 0
+ ],
+ [
+ 1782972000000,
+ 83.67,
+ 0
+ ],
+ [
+ 1782975600000,
+ 82.92,
+ 0
+ ],
+ [
+ 1782979200000,
+ 89.3,
+ 0
+ ],
+ [
+ 1782982800000,
+ 94.05,
+ 0
+ ],
+ [
+ 1782986400000,
+ 77.97,
+ 0
+ ],
+ [
+ 1782990000000,
+ 80.7,
+ 0
+ ],
+ [
+ 1782993600000,
+ 89.61,
+ 0
+ ],
+ [
+ 1782997200000,
+ 89.87,
+ 0
+ ],
+ [
+ 1783000800000,
+ 86.99,
+ 0
+ ],
+ [
+ 1783004400000,
+ 78.25,
+ 0
+ ],
+ [
+ 1783008000000,
+ 77.78,
+ 0
+ ],
+ [
+ 1783011600000,
+ 69.65,
+ 0
+ ],
+ [
+ 1783015200000,
+ 64.63,
+ 0
+ ],
+ [
+ 1783018800000,
+ 58.99,
+ 0
+ ],
+ [
+ 1783022400000,
+ 56.64,
+ 0
+ ],
+ [
+ 1783026000000,
+ 56.63,
+ 0
+ ],
+ [
+ 1783029600000,
+ 57.46,
+ 0
+ ],
+ [
+ 1783033200000,
+ 60.17,
+ 0
+ ],
+ [
+ 1783036800000,
+ 82.41,
+ 0
+ ],
+ [
+ 1783040400000,
+ 92.26,
+ 0
+ ],
+ [
+ 1783044000000,
+ 96.98,
+ 0
+ ],
+ [
+ 1783047600000,
+ 93.18,
+ 0
+ ],
+ [
+ 1783051200000,
+ 91.47,
+ 0
+ ],
+ [
+ 1783054800000,
+ 93.33,
+ 0
+ ],
+ [
+ 1783058400000,
+ 95.51,
+ 0
+ ],
+ [
+ 1783062000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783065600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783069200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783072800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783076400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783080000000,
+ 97.61,
+ 0
+ ],
+ [
+ 1783083600000,
+ 96.2,
+ 0
+ ],
+ [
+ 1783087200000,
+ 87.79,
+ 0
+ ],
+ [
+ 1783090800000,
+ 79.0,
+ 0
+ ],
+ [
+ 1783094400000,
+ 71.2,
+ 0
+ ],
+ [
+ 1783098000000,
+ 66.42,
+ 0
+ ],
+ [
+ 1783101600000,
+ 63.18,
+ 0
+ ],
+ [
+ 1783105200000,
+ 61.34,
+ 0
+ ],
+ [
+ 1783108800000,
+ 59.83,
+ 0
+ ],
+ [
+ 1783112400000,
+ 57.69,
+ 0
+ ],
+ [
+ 1783116000000,
+ 61.22,
+ 0
+ ],
+ [
+ 1783119600000,
+ 61.5,
+ 0
+ ],
+ [
+ 1783123200000,
+ 64.21,
+ 0
+ ],
+ [
+ 1783126800000,
+ 66.52,
+ 0
+ ],
+ [
+ 1783130400000,
+ 71.98,
+ 0
+ ],
+ [
+ 1783134000000,
+ 77.21,
+ 0
+ ],
+ [
+ 1783137600000,
+ 81.01,
+ 0
+ ],
+ [
+ 1783141200000,
+ 81.69,
+ 0
+ ],
+ [
+ 1783144800000,
+ 84.79,
+ 0
+ ],
+ [
+ 1783148400000,
+ 92.6,
+ 0
+ ],
+ [
+ 1783152000000,
+ 96.86,
+ 0
+ ],
+ [
+ 1783155600000,
+ 98.38,
+ 0
+ ],
+ [
+ 1783159200000,
+ 100.01,
+ 0
+ ],
+ [
+ 1783162800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783166400000,
+ 99.54,
+ 0
+ ],
+ [
+ 1783170000000,
+ 93.4,
+ 0
+ ],
+ [
+ 1783173600000,
+ 78.96,
+ 0
+ ],
+ [
+ 1783177200000,
+ 70.97,
+ 0
+ ],
+ [
+ 1783180800000,
+ 69.75,
+ 0
+ ],
+ [
+ 1783184400000,
+ 64.44,
+ 0
+ ],
+ [
+ 1783188000000,
+ 58.99,
+ 0
+ ],
+ [
+ 1783191600000,
+ 55.12,
+ 0
+ ],
+ [
+ 1783195200000,
+ 52.73,
+ 0
+ ],
+ [
+ 1783198800000,
+ 48.04,
+ 0
+ ],
+ [
+ 1783202400000,
+ 46.92,
+ 0
+ ],
+ [
+ 1783206000000,
+ 50.09,
+ 0
+ ],
+ [
+ 1783209600000,
+ 58.89,
+ 0
+ ],
+ [
+ 1783213200000,
+ 65.02,
+ 0
+ ],
+ [
+ 1783216800000,
+ 70.46,
+ 0
+ ],
+ [
+ 1783220400000,
+ 77.5,
+ 0
+ ],
+ [
+ 1783224000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783227600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783231200000,
+ 99.24,
+ 0
+ ],
+ [
+ 1783234800000,
+ 93.53,
+ 0
+ ],
+ [
+ 1783238400000,
+ 92.93,
+ 0
+ ],
+ [
+ 1783242000000,
+ 96.73,
+ 0
+ ],
+ [
+ 1783245600000,
+ 97.07,
+ 0
+ ],
+ [
+ 1783249200000,
+ 99.86,
+ 0
+ ],
+ [
+ 1783252800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783256400000,
+ 97.91,
+ 0
+ ],
+ [
+ 1783260000000,
+ 97.26,
+ 0
+ ],
+ [
+ 1783263600000,
+ 88.55,
+ 0
+ ],
+ [
+ 1783267200000,
+ 80.02,
+ 0
+ ],
+ [
+ 1783270800000,
+ 69.97,
+ 0
+ ],
+ [
+ 1783274400000,
+ 69.45,
+ 0
+ ],
+ [
+ 1783278000000,
+ 63.05,
+ 0
+ ],
+ [
+ 1783281600000,
+ 59.39,
+ 0
+ ],
+ [
+ 1783285200000,
+ 54.3,
+ 0
+ ],
+ [
+ 1783288800000,
+ 55.83,
+ 0
+ ],
+ [
+ 1783292400000,
+ 61.38,
+ 0
+ ],
+ [
+ 1783296000000,
+ 62.63,
+ 0
+ ],
+ [
+ 1783299600000,
+ 69.59,
+ 0
+ ],
+ [
+ 1783303200000,
+ 84.33,
+ 0
+ ],
+ [
+ 1783306800000,
+ 91.3,
+ 0
+ ],
+ [
+ 1783310400000,
+ 97.63,
+ 0
+ ],
+ [
+ 1783314000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783317600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783321200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783324800000,
+ 99.49,
+ 0
+ ],
+ [
+ 1783328400000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783332000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783335600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783339200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783342800000,
+ 99.03,
+ 0
+ ],
+ [
+ 1783346400000,
+ 94.35,
+ 0
+ ],
+ [
+ 1783350000000,
+ 88.34,
+ 0
+ ],
+ [
+ 1783353600000,
+ 72.95,
+ 0
+ ],
+ [
+ 1783357200000,
+ 66.83,
+ 0
+ ],
+ [
+ 1783360800000,
+ 63.22,
+ 0
+ ],
+ [
+ 1783364400000,
+ 57.84,
+ 0
+ ],
+ [
+ 1783368000000,
+ 52.96,
+ 0
+ ],
+ [
+ 1783371600000,
+ 52.94,
+ 0
+ ],
+ [
+ 1783375200000,
+ 49.21,
+ 0
+ ],
+ [
+ 1783378800000,
+ 51.12,
+ 0
+ ],
+ [
+ 1783382400000,
+ 53.17,
+ 0
+ ],
+ [
+ 1783386000000,
+ 53.98,
+ 0
+ ],
+ [
+ 1783389600000,
+ 68.36,
+ 0
+ ],
+ [
+ 1783393200000,
+ 76.68,
+ 0
+ ],
+ [
+ 1783396800000,
+ 84.09,
+ 0
+ ],
+ [
+ 1783400400000,
+ 93.44,
+ 0
+ ],
+ [
+ 1783404000000,
+ 98.29,
+ 0
+ ],
+ [
+ 1783407600000,
+ 95.41,
+ 0
+ ],
+ [
+ 1783411200000,
+ 93.17,
+ 0
+ ],
+ [
+ 1783414800000,
+ 93.46,
+ 0
+ ],
+ [
+ 1783418400000,
+ 95.95,
+ 0
+ ],
+ [
+ 1783422000000,
+ 99.21,
+ 0
+ ],
+ [
+ 1783425600000,
+ 99.71,
+ 0
+ ],
+ [
+ 1783429200000,
+ 96.01,
+ 0
+ ],
+ [
+ 1783432800000,
+ 87.73,
+ 0
+ ],
+ [
+ 1783436400000,
+ 79.4,
+ 0
+ ],
+ [
+ 1783440000000,
+ 76.11,
+ 0
+ ],
+ [
+ 1783443600000,
+ 74.28,
+ 0
+ ],
+ [
+ 1783447200000,
+ 71.82,
+ 0
+ ],
+ [
+ 1783450800000,
+ 68.2,
+ 0
+ ],
+ [
+ 1783454400000,
+ 54.45,
+ 0
+ ],
+ [
+ 1783458000000,
+ 52.61,
+ 0
+ ],
+ [
+ 1783461600000,
+ 49.17,
+ 0
+ ],
+ [
+ 1783465200000,
+ 48.52,
+ 0
+ ],
+ [
+ 1783468800000,
+ 49.66,
+ 0
+ ],
+ [
+ 1783472400000,
+ 54.92,
+ 0
+ ],
+ [
+ 1783476000000,
+ 68.24,
+ 0
+ ],
+ [
+ 1783479600000,
+ 86.41,
+ 0
+ ],
+ [
+ 1783483200000,
+ 89.84,
+ 0
+ ],
+ [
+ 1783486800000,
+ 95.08,
+ 0
+ ],
+ [
+ 1783490400000,
+ 98.94,
+ 0
+ ],
+ [
+ 1783494000000,
+ 97.91,
+ 0
+ ],
+ [
+ 1783497600000,
+ 93.38,
+ 0
+ ],
+ [
+ 1783501200000,
+ 94.68,
+ 0
+ ],
+ [
+ 1783504800000,
+ 98.76,
+ 0
+ ],
+ [
+ 1783508400000,
+ 99.99,
+ 0
+ ],
+ [
+ 1783512000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783515600000,
+ 99.45,
+ 0
+ ],
+ [
+ 1783519200000,
+ 96.33,
+ 0
+ ],
+ [
+ 1783522800000,
+ 85.8,
+ 0
+ ],
+ [
+ 1783526400000,
+ 77.48,
+ 0
+ ],
+ [
+ 1783530000000,
+ 67.38,
+ 0
+ ],
+ [
+ 1783533600000,
+ 63.45,
+ 0
+ ],
+ [
+ 1783537200000,
+ 59.45,
+ 0
+ ],
+ [
+ 1783540800000,
+ 58.67,
+ 0
+ ],
+ [
+ 1783544400000,
+ 59.69,
+ 0
+ ],
+ [
+ 1783548000000,
+ 55.25,
+ 0
+ ],
+ [
+ 1783551600000,
+ 55.02,
+ 0
+ ],
+ [
+ 1783555200000,
+ 58.15,
+ 0
+ ],
+ [
+ 1783558800000,
+ 63.57,
+ 0
+ ],
+ [
+ 1783562400000,
+ 70.36,
+ 0
+ ],
+ [
+ 1783566000000,
+ 74.73,
+ 0
+ ],
+ [
+ 1783569600000,
+ 77.34,
+ 0
+ ],
+ [
+ 1783573200000,
+ 79.37,
+ 0
+ ],
+ [
+ 1783576800000,
+ 77.21,
+ 0
+ ],
+ [
+ 1783580400000,
+ 77.44,
+ 0
+ ],
+ [
+ 1783584000000,
+ 76.01,
+ 0
+ ],
+ [
+ 1783587600000,
+ 71.92,
+ 0
+ ],
+ [
+ 1783591200000,
+ 70.27,
+ 0
+ ],
+ [
+ 1783594800000,
+ 68.35,
+ 0
+ ],
+ [
+ 1783598400000,
+ 69.78,
+ 0
+ ],
+ [
+ 1783602000000,
+ 70.89,
+ 0
+ ],
+ [
+ 1783605600000,
+ 68.81,
+ 0
+ ],
+ [
+ 1783609200000,
+ 66.38,
+ 0
+ ],
+ [
+ 1783612800000,
+ 63.84,
+ 0
+ ],
+ [
+ 1783616400000,
+ 61.0,
+ 0
+ ],
+ [
+ 1783620000000,
+ 59.42,
+ 0
+ ],
+ [
+ 1783623600000,
+ 55.41,
+ 0
+ ],
+ [
+ 1783627200000,
+ 54.16,
+ 0
+ ],
+ [
+ 1783630800000,
+ 52.78,
+ 0
+ ],
+ [
+ 1783634400000,
+ 51.18,
+ 0
+ ],
+ [
+ 1783638000000,
+ 50.74,
+ 0
+ ],
+ [
+ 1783641600000,
+ 56.3,
+ 0
+ ],
+ [
+ 1783645200000,
+ 62.31,
+ 0
+ ],
+ [
+ 1783648800000,
+ 63.09,
+ 0
+ ],
+ [
+ 1783652400000,
+ 63.11,
+ 0
+ ],
+ [
+ 1783656000000,
+ 62.83,
+ 0
+ ],
+ [
+ 1783659600000,
+ 61.17,
+ 0
+ ],
+ [
+ 1783663200000,
+ 61.88,
+ 0
+ ],
+ [
+ 1783666800000,
+ 58.8,
+ 0
+ ],
+ [
+ 1783670400000,
+ 57.17,
+ 0
+ ],
+ [
+ 1783674000000,
+ 58.64,
+ 0
+ ],
+ [
+ 1783677600000,
+ 60.12,
+ 0
+ ],
+ [
+ 1783681200000,
+ 62.68,
+ 0
+ ],
+ [
+ 1783684800000,
+ 63.14,
+ 0
+ ],
+ [
+ 1783688400000,
+ 63.21,
+ 0
+ ],
+ [
+ 1783692000000,
+ 63.79,
+ 0
+ ],
+ [
+ 1783695600000,
+ 61.61,
+ 0
+ ],
+ [
+ 1783699200000,
+ 60.35,
+ 0
+ ],
+ [
+ 1783702800000,
+ 56.33,
+ 0
+ ],
+ [
+ 1783706400000,
+ 52.95,
+ 0
+ ],
+ [
+ 1783710000000,
+ 50.44,
+ 0
+ ],
+ [
+ 1783713600000,
+ 48.44,
+ 0
+ ],
+ [
+ 1783717200000,
+ 47.71,
+ 0
+ ],
+ [
+ 1783720800000,
+ 45.98,
+ 0
+ ],
+ [
+ 1783724400000,
+ 46.77,
+ 0
+ ],
+ [
+ 1783728000000,
+ 48.36,
+ 0
+ ],
+ [
+ 1783731600000,
+ 55.02,
+ 0
+ ],
+ [
+ 1783735200000,
+ 60.32,
+ 0
+ ],
+ [
+ 1783738800000,
+ 64.26,
+ 0
+ ],
+ [
+ 1783742400000,
+ 67.07,
+ 0
+ ],
+ [
+ 1783746000000,
+ 67.18,
+ 0
+ ],
+ [
+ 1783749600000,
+ 65.59,
+ 0
+ ],
+ [
+ 1783753200000,
+ 66.64,
+ 0
+ ],
+ [
+ 1783756800000,
+ 67.8,
+ 0
+ ],
+ [
+ 1783760400000,
+ 68.58,
+ 0
+ ],
+ [
+ 1783764000000,
+ 71.1,
+ 0
+ ],
+ [
+ 1783767600000,
+ 73.06,
+ 0
+ ],
+ [
+ 1783771200000,
+ 73.4,
+ 0
+ ],
+ [
+ 1783774800000,
+ 73.61,
+ 0
+ ],
+ [
+ 1783778400000,
+ 72.41,
+ 0
+ ],
+ [
+ 1783782000000,
+ 68.64,
+ 0
+ ],
+ [
+ 1783785600000,
+ 65.84,
+ 0
+ ],
+ [
+ 1783789200000,
+ 63.07,
+ 0
+ ],
+ [
+ 1783792800000,
+ 60.59,
+ 0
+ ],
+ [
+ 1783796400000,
+ 56.28,
+ 0
+ ],
+ [
+ 1783800000000,
+ 52.32,
+ 0
+ ],
+ [
+ 1783803600000,
+ 50.52,
+ 0
+ ],
+ [
+ 1783807200000,
+ 50.62,
+ 0
+ ],
+ [
+ 1783810800000,
+ 48.39,
+ 0
+ ],
+ [
+ 1783814400000,
+ 50.63,
+ 0
+ ],
+ [
+ 1783818000000,
+ 54.45,
+ 0
+ ],
+ [
+ 1783821600000,
+ 61.82,
+ 0
+ ],
+ [
+ 1783825200000,
+ 76.25,
+ 0
+ ],
+ [
+ 1783828800000,
+ 76.49,
+ 0
+ ],
+ [
+ 1783832400000,
+ 90.3,
+ 0
+ ],
+ [
+ 1783836000000,
+ 90.73,
+ 0
+ ],
+ [
+ 1783839600000,
+ 90.7,
+ 0
+ ],
+ [
+ 1783843200000,
+ 93.77,
+ 0
+ ],
+ [
+ 1783846800000,
+ 99.46,
+ 0
+ ],
+ [
+ 1783850400000,
+ 96.76,
+ 0
+ ],
+ [
+ 1783854000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783857600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783861200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783864800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783868400000,
+ 97.15,
+ 0
+ ],
+ [
+ 1783872000000,
+ 99.84,
+ 0
+ ],
+ [
+ 1783875600000,
+ 99.98,
+ 0
+ ],
+ [
+ 1783879200000,
+ 99.25,
+ 0
+ ],
+ [
+ 1783882800000,
+ 96.01,
+ 0
+ ],
+ [
+ 1783886400000,
+ 94.22,
+ 0
+ ],
+ [
+ 1783890000000,
+ 90.94,
+ 0
+ ],
+ [
+ 1783893600000,
+ 83.57,
+ 0
+ ],
+ [
+ 1783897200000,
+ 78.04,
+ 0
+ ],
+ [
+ 1783900800000,
+ 78.01,
+ 0
+ ],
+ [
+ 1783904400000,
+ 79.36,
+ 0
+ ],
+ [
+ 1783908000000,
+ 84.77,
+ 0
+ ],
+ [
+ 1783911600000,
+ 96.98,
+ 0
+ ],
+ [
+ 1783915200000,
+ 99.82,
+ 0
+ ],
+ [
+ 1783918800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783922400000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783926000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783929600000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783933200000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783936800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783940400000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783944000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783947600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783951200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783954800000,
+ 99.21,
+ 0
+ ],
+ [
+ 1783958400000,
+ 89.13,
+ 0
+ ],
+ [
+ 1783962000000,
+ 77.6,
+ 0
+ ],
+ [
+ 1783965600000,
+ 68.39,
+ 0
+ ],
+ [
+ 1783969200000,
+ 61.69,
+ 0
+ ],
+ [
+ 1783972800000,
+ 55.55,
+ 0
+ ],
+ [
+ 1783976400000,
+ 48.69,
+ 0
+ ],
+ [
+ 1783980000000,
+ 50.33,
+ 0
+ ],
+ [
+ 1783983600000,
+ 54.22,
+ 0
+ ],
+ [
+ 1783987200000,
+ 55.14,
+ 0
+ ],
+ [
+ 1783990800000,
+ 59.21,
+ 0
+ ],
+ [
+ 1783994400000,
+ 62.68,
+ 0
+ ],
+ [
+ 1783998000000,
+ 77.16,
+ 0
+ ],
+ [
+ 1784001600000,
+ 77.89,
+ 0
+ ],
+ [
+ 1784005200000,
+ 82.49,
+ 0
+ ],
+ [
+ 1784008800000,
+ 92.05,
+ 0
+ ],
+ [
+ 1784012400000,
+ 93.67,
+ 0
+ ],
+ [
+ 1784016000000,
+ 91.43,
+ 0
+ ],
+ [
+ 1784019600000,
+ 92.08,
+ 0
+ ],
+ [
+ 1784023200000,
+ 99.33,
+ 0
+ ],
+ [
+ 1784026800000,
+ 99.7,
+ 0
+ ],
+ [
+ 1784030400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1784034000000,
+ 99.17,
+ 0
+ ],
+ [
+ 1784037600000,
+ 89.74,
+ 0
+ ],
+ [
+ 1784041200000,
+ 82.91,
+ 0
+ ],
+ [
+ 1784044800000,
+ 78.45,
+ 0
+ ],
+ [
+ 1784048400000,
+ 73.76,
+ 0
+ ],
+ [
+ 1784052000000,
+ 68.02,
+ 0
+ ],
+ [
+ 1784055600000,
+ 62.72,
+ 0
+ ],
+ [
+ 1784059200000,
+ 65.13,
+ 0
+ ],
+ [
+ 1784062800000,
+ 61.9,
+ 0
+ ],
+ [
+ 1784066400000,
+ 54.46,
+ 0
+ ],
+ [
+ 1784070000000,
+ 49.9,
+ 0
+ ],
+ [
+ 1784073600000,
+ 55.87,
+ 0
+ ],
+ [
+ 1784077200000,
+ 63.25,
+ 0
+ ],
+ [
+ 1784080800000,
+ 72.12,
+ 0
+ ],
+ [
+ 1784084400000,
+ 85.53,
+ 0
+ ],
+ [
+ 1784088000000,
+ 88.11,
+ 0
+ ],
+ [
+ 1784091600000,
+ 95.72,
+ 0
+ ],
+ [
+ 1784095200000,
+ 97.24,
+ 0
+ ],
+ [
+ 1784098800000,
+ 94.85,
+ 0
+ ],
+ [
+ 1784102400000,
+ 90.74,
+ 0
+ ],
+ [
+ 1784106000000,
+ 93.44,
+ 0
+ ],
+ [
+ 1784109600000,
+ 97.49,
+ 0
+ ],
+ [
+ 1784113200000,
+ 99.94,
+ 0
+ ],
+ [
+ 1784116800000,
+ 100.0,
+ 0
+ ],
+ [
+ 1784120400000,
+ 93.65,
+ 0
+ ],
+ [
+ 1784124000000,
+ 89.64,
+ 0
+ ],
+ [
+ 1784127600000,
+ 98.15,
+ 0
+ ],
+ [
+ 1784131200000,
+ 99.32,
+ 0
+ ],
+ [
+ 1784134800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1784138400000,
+ 99.4,
+ 0
+ ],
+ [
+ 1784142000000,
+ 91.18,
+ 0
+ ],
+ [
+ 1784145600000,
+ 84.13,
+ 0
+ ],
+ [
+ 1784149200000,
+ 79.6,
+ 0
+ ],
+ [
+ 1784152800000,
+ 75.77,
+ 0
+ ],
+ [
+ 1784156400000,
+ 69.16,
+ 0
+ ],
+ [
+ 1784160000000,
+ 77.4,
+ 0
+ ],
+ [
+ 1784163600000,
+ 84.78,
+ 0
+ ],
+ [
+ 1784167200000,
+ 95.25,
+ 0
+ ],
+ [
+ 1784170800000,
+ 96.93,
+ 0
+ ],
+ [
+ 1784174400000,
+ null,
+ 0
+ ],
+ [
+ 1784178000000,
+ null,
+ 0
+ ],
+ [
+ 1784181600000,
+ null,
+ 0
+ ],
+ [
+ 1784185200000,
+ null,
+ 0
+ ],
+ [
+ 1784188800000,
+ null,
+ 0
+ ],
+ [
+ 1784192400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1784196000000,
+ 94.27,
+ 0
+ ],
+ [
+ 1784199600000,
+ 90.9,
+ 0
+ ],
+ [
+ 1784203200000,
+ 92.62,
+ 0
+ ],
+ [
+ 1784206800000,
+ 90.84,
+ 0
+ ],
+ [
+ 1784210400000,
+ 85.48,
+ 0
+ ],
+ [
+ 1784214000000,
+ 80.0,
+ 0
+ ],
+ [
+ 1784217600000,
+ 74.87,
+ 0
+ ],
+ [
+ 1784221200000,
+ 71.23,
+ 0
+ ],
+ [
+ 1784224800000,
+ 68.67,
+ 0
+ ],
+ [
+ 1784228400000,
+ 66.44,
+ 0
+ ],
+ [
+ 1784232000000,
+ 61.33,
+ 0
+ ],
+ [
+ 1784235600000,
+ 54.27,
+ 0
+ ],
+ [
+ 1784239200000,
+ 52.77,
+ 0
+ ],
+ [
+ 1784242800000,
+ 52.73,
+ 0
+ ],
+ [
+ 1784246400000,
+ 55.29,
+ 0
+ ],
+ [
+ 1784250000000,
+ 64.85,
+ 0
+ ],
+ [
+ 1784253600000,
+ 81.03,
+ 0
+ ],
+ [
+ 1784257200000,
+ 80.89,
+ 0
+ ],
+ [
+ 1784260800000,
+ 84.63,
+ 0
+ ],
+ [
+ 1784264400000,
+ 86.88,
+ 0
+ ],
+ [
+ 1784268000000,
+ 86.54,
+ 0
+ ],
+ [
+ 1784271600000,
+ 87.22,
+ 0
+ ],
+ [
+ 1784275200000,
+ 87.34,
+ 0
+ ],
+ [
+ 1784278800000,
+ 90.37,
+ 0
+ ],
+ [
+ 1784282400000,
+ 91.02,
+ 0
+ ],
+ [
+ 1784286000000,
+ 97.34,
+ 0
+ ],
+ [
+ 1784289600000,
+ 99.48,
+ 0
+ ],
+ [
+ 1784293200000,
+ 95.83,
+ 0
+ ],
+ [
+ 1784296800000,
+ 84.19,
+ 0
+ ],
+ [
+ 1784300400000,
+ 77.44,
+ 0
+ ],
+ [
+ 1784304000000,
+ 74.23,
+ 0
+ ],
+ [
+ 1784307600000,
+ 72.88,
+ 0
+ ],
+ [
+ 1784311200000,
+ 71.06,
+ 0
+ ],
+ [
+ 1784314800000,
+ 61.6,
+ 0
+ ],
+ [
+ 1784318400000,
+ 61.44,
+ 0
+ ],
+ [
+ 1784322000000,
+ 58.23,
+ 0
+ ],
+ [
+ 1784325600000,
+ 63.49,
+ 0
+ ],
+ [
+ 1784329200000,
+ 63.53,
+ 0
+ ],
+ [
+ 1784332800000,
+ 59.36,
+ 0
+ ],
+ [
+ 1784336400000,
+ 60.84,
+ 0
+ ],
+ [
+ 1784340000000,
+ 68.77,
+ 0
+ ],
+ [
+ 1784343600000,
+ 74.63,
+ 0
+ ],
+ [
+ 1784347200000,
+ 74.38,
+ 0
+ ],
+ [
+ 1784350800000,
+ 83.13,
+ 0
+ ],
+ [
+ 1784354400000,
+ 88.99,
+ 0
+ ],
+ [
+ 1784358000000,
+ 82.44,
+ 0
+ ],
+ [
+ 1784361600000,
+ 80.0,
+ 0
+ ],
+ [
+ 1784365200000,
+ 76.98,
+ 0
+ ],
+ [
+ 1784368800000,
+ 78.15,
+ 0
+ ],
+ [
+ 1784372400000,
+ 78.29,
+ 0
+ ],
+ [
+ 1784376000000,
+ 79.1,
+ 0
+ ],
+ [
+ 1784379600000,
+ 78.93,
+ 0
+ ],
+ [
+ 1784383200000,
+ 75.44,
+ 0
+ ],
+ [
+ 1784386800000,
+ 68.97,
+ 0
+ ],
+ [
+ 1784390400000,
+ 60.63,
+ 0
+ ],
+ [
+ 1784394000000,
+ 58.71,
+ 0
+ ],
+ [
+ 1784397600000,
+ 57.65,
+ 0
+ ],
+ [
+ 1784401200000,
+ 56.48,
+ 0
+ ],
+ [
+ 1784404800000,
+ 55.33,
+ 0
+ ],
+ [
+ 1784408400000,
+ 55.72,
+ 0
+ ],
+ [
+ 1784412000000,
+ 52.81,
+ 0
+ ],
+ [
+ 1784415600000,
+ 55.38,
+ 0
+ ],
+ [
+ 1784419200000,
+ 56.79,
+ 0
+ ],
+ [
+ 1784422800000,
+ 60.39,
+ 0
+ ],
+ [
+ 1784426400000,
+ 62.61,
+ 0
+ ],
+ [
+ 1784430000000,
+ 64.99,
+ 0
+ ],
+ [
+ 1784433600000,
+ 68.65,
+ 0
+ ],
+ [
+ 1784437200000,
+ 68.73,
+ 0
+ ],
+ [
+ 1784440800000,
+ 70.69,
+ 0
+ ],
+ [
+ 1784444400000,
+ 74.07,
+ 0
+ ],
+ [
+ 1784448000000,
+ 78.79,
+ 0
+ ],
+ [
+ 1784451600000,
+ 79.36,
+ 0
+ ],
+ [
+ 1784455200000,
+ 82.17,
+ 0
+ ],
+ [
+ 1784458800000,
+ 82.1,
+ 0
+ ],
+ [
+ 1784462400000,
+ 82.41,
+ 0
+ ],
+ [
+ 1784466000000,
+ 80.84,
+ 0
+ ],
+ [
+ 1784469600000,
+ 74.91,
+ 0
+ ],
+ [
+ 1784473200000,
+ 71.71,
+ 0
+ ],
+ [
+ 1784476800000,
+ 69.68,
+ 0
+ ],
+ [
+ 1784480400000,
+ 67.71,
+ 0
+ ],
+ [
+ 1784484000000,
+ 66.26,
+ 0
+ ],
+ [
+ 1784487600000,
+ 60.34,
+ 0
+ ],
+ [
+ 1784491200000,
+ 55.84,
+ 0
+ ],
+ [
+ 1784494800000,
+ 51.04,
+ 0
+ ],
+ [
+ 1784498400000,
+ 46.42,
+ 0
+ ],
+ [
+ 1784502000000,
+ 48.67,
+ 0
+ ],
+ [
+ 1784505600000,
+ 54.09,
+ 0
+ ],
+ [
+ 1784509200000,
+ 55.88,
+ 0
+ ],
+ [
+ 1784512800000,
+ 65.28,
+ 0
+ ],
+ [
+ 1784516400000,
+ 70.87,
+ 0
+ ],
+ [
+ 1784520000000,
+ 78.35,
+ 0
+ ],
+ [
+ 1784523600000,
+ 76.51,
+ 0
+ ],
+ [
+ 1784527200000,
+ 74.71,
+ 0
+ ],
+ [
+ 1784530800000,
+ 84.14,
+ 0
+ ],
+ [
+ 1784534400000,
+ 83.77,
+ 0
+ ],
+ [
+ 1784538000000,
+ 93.91,
+ 0
+ ],
+ [
+ 1784541600000,
+ 95.41,
+ 0
+ ],
+ [
+ 1784545200000,
+ 94.26,
+ 0
+ ],
+ [
+ 1784548800000,
+ 91.57,
+ 0
+ ],
+ [
+ 1784552400000,
+ 79.34,
+ 0
+ ],
+ [
+ 1784556000000,
+ 72.63,
+ 0
+ ],
+ [
+ 1784559600000,
+ 67.52,
+ 0
+ ],
+ [
+ 1784563200000,
+ 66.58,
+ 0
+ ],
+ [
+ 1784566800000,
+ 65.41,
+ 0
+ ],
+ [
+ 1784570400000,
+ 60.87,
+ 0
+ ],
+ [
+ 1784574000000,
+ 56.34,
+ 0
+ ],
+ [
+ 1784577600000,
+ 50.46,
+ 0
+ ],
+ [
+ 1784581200000,
+ 48.92,
+ 0
+ ],
+ [
+ 1784584800000,
+ 46.22,
+ 0
+ ],
+ [
+ 1784588400000,
+ 44.86,
+ 0
+ ],
+ [
+ 1784592000000,
+ 44.2,
+ 0
+ ],
+ [
+ 1784595600000,
+ 50.49,
+ 0
+ ],
+ [
+ 1784599200000,
+ 57.93,
+ 0
+ ],
+ [
+ 1784602800000,
+ 61.07,
+ 0
+ ],
+ [
+ 1784606400000,
+ 65.42,
+ 0
+ ],
+ [
+ 1784610000000,
+ 67.1,
+ 0
+ ],
+ [
+ 1784613600000,
+ 68.49,
+ 0
+ ],
+ [
+ 1784617200000,
+ 69.68,
+ 0
+ ],
+ [
+ 1784620800000,
+ 71.82,
+ 0
+ ],
+ [
+ 1784624400000,
+ 73.67,
+ 0
+ ],
+ [
+ 1784628000000,
+ 69.67,
+ 0
+ ],
+ [
+ 1784631600000,
+ 78.31,
+ 0
+ ],
+ [
+ 1784635200000,
+ 86.49,
+ 0
+ ],
+ [
+ 1784638800000,
+ 71.94,
+ 0
+ ],
+ [
+ 1784642400000,
+ 66.14,
+ 0
+ ],
+ [
+ 1784646000000,
+ 63.17,
+ 0
+ ],
+ [
+ 1784649600000,
+ 60.98,
+ 0
+ ],
+ [
+ 1784653200000,
+ 56.39,
+ 0
+ ],
+ [
+ 1784656800000,
+ 54.66,
+ 0
+ ],
+ [
+ 1784660400000,
+ 53.61,
+ 0
+ ],
+ [
+ 1784664000000,
+ 51.95,
+ 0
+ ],
+ [
+ 1784667600000,
+ 53.51,
+ 0
+ ],
+ [
+ 1784671200000,
+ 55.27,
+ 0
+ ],
+ [
+ 1784674800000,
+ 52.58,
+ 0
+ ],
+ [
+ 1784678400000,
+ 50.05,
+ 0
+ ],
+ [
+ 1784682000000,
+ 56.72,
+ 0
+ ],
+ [
+ 1784685600000,
+ 64.88,
+ 0
+ ],
+ [
+ 1784689200000,
+ 69.04,
+ 0
+ ],
+ [
+ 1784692800000,
+ 62.57,
+ 0
+ ],
+ [
+ 1784696400000,
+ 67.56,
+ 0
+ ],
+ [
+ 1784700000000,
+ 67.03,
+ 0
+ ],
+ [
+ 1784703600000,
+ 63.03,
+ 0
+ ],
+ [
+ 1784707200000,
+ 66.31,
+ 0
+ ],
+ [
+ 1784710800000,
+ 63.62,
+ 0
+ ],
+ [
+ 1784714400000,
+ 64.09,
+ 0
+ ],
+ [
+ 1784718000000,
+ 67.62,
+ 0
+ ],
+ [
+ 1784721600000,
+ 71.34,
+ 0
+ ],
+ [
+ 1784725200000,
+ 70.41,
+ 0
+ ],
+ [
+ 1784728800000,
+ 66.99,
+ 0
+ ],
+ [
+ 1784732400000,
+ 65.63,
+ 0
+ ],
+ [
+ 1784736000000,
+ 61.82,
+ 0
+ ],
+ [
+ 1784739600000,
+ 58.2,
+ 0
+ ],
+ [
+ 1784743200000,
+ 52.72,
+ 0
+ ],
+ [
+ 1784746800000,
+ 45.46,
+ 0
+ ],
+ [
+ 1784750400000,
+ 48.0,
+ 0
+ ],
+ [
+ 1784754000000,
+ 45.15,
+ 0
+ ],
+ [
+ 1784757600000,
+ 43.69,
+ 0
+ ],
+ [
+ 1784761200000,
+ 43.43,
+ 0
+ ],
+ [
+ 1784764800000,
+ 42.87,
+ 0
+ ],
+ [
+ 1784768400000,
+ 48.04,
+ 0
+ ],
+ [
+ 1784772000000,
+ 53.39,
+ 0
+ ],
+ [
+ 1784775600000,
+ 61.27,
+ 0
+ ],
+ [
+ 1784779200000,
+ 69.68,
+ 0
+ ],
+ [
+ 1784782800000,
+ 75.11,
+ 0
+ ],
+ [
+ 1784786400000,
+ 75.37,
+ 0
+ ],
+ [
+ 1784790000000,
+ 76.95,
+ 0
+ ],
+ [
+ 1784793600000,
+ 72.43,
+ 0
+ ],
+ [
+ 1784797200000,
+ 72.72,
+ 0
+ ],
+ [
+ 1784800800000,
+ 73.94,
+ 0
+ ],
+ [
+ 1784804400000,
+ 79.53,
+ 0
+ ],
+ [
+ 1784808000000,
+ 80.56,
+ 0
+ ],
+ [
+ 1784811600000,
+ 79.32,
+ 0
+ ],
+ [
+ 1784815200000,
+ 74.03,
+ 0
+ ],
+ [
+ 1784818800000,
+ 67.24,
+ 0
+ ],
+ [
+ 1784822400000,
+ 62.03,
+ 0
+ ],
+ [
+ 1784826000000,
+ 57.74,
+ 0
+ ],
+ [
+ 1784829600000,
+ 55.0,
+ 0
+ ],
+ [
+ 1784833200000,
+ 50.04,
+ 0
+ ],
+ [
+ 1784836800000,
+ 49.57,
+ 0
+ ],
+ [
+ 1784840400000,
+ 47.54,
+ 0
+ ],
+ [
+ 1784844000000,
+ 45.29,
+ 0
+ ],
+ [
+ 1784847600000,
+ 46.6,
+ 0
+ ],
+ [
+ 1784851200000,
+ 48.65,
+ 0
+ ],
+ [
+ 1784854800000,
+ 51.54,
+ 0
+ ],
+ [
+ 1784858400000,
+ 59.03,
+ 0
+ ],
+ [
+ 1784862000000,
+ 72.1,
+ 0
+ ],
+ [
+ 1784865600000,
+ 64.51,
+ 0
+ ],
+ [
+ 1784869200000,
+ 69.84,
+ 0
+ ],
+ [
+ 1784872800000,
+ 79.01,
+ 0
+ ],
+ [
+ 1784876400000,
+ 75.26,
+ 0
+ ],
+ [
+ 1784880000000,
+ 79.81,
+ 0
+ ],
+ [
+ 1784883600000,
+ 80.02,
+ 0
+ ],
+ [
+ 1784887200000,
+ 81.3,
+ 0
+ ],
+ [
+ 1784890800000,
+ 82.4,
+ 0
+ ],
+ [
+ 1784894400000,
+ 80.53,
+ 0
+ ],
+ [
+ 1784898000000,
+ 78.86,
+ 0
+ ],
+ [
+ 1784901600000,
+ 79.74,
+ 0
+ ],
+ [
+ 1784905200000,
+ 75.73,
+ 0
+ ],
+ [
+ 1784908800000,
+ 76.97,
+ 0
+ ],
+ [
+ 1784912400000,
+ 76.57,
+ 0
+ ],
+ [
+ 1784916000000,
+ 71.79,
+ 0
+ ],
+ [
+ 1784919600000,
+ 66.52,
+ 0
+ ],
+ [
+ 1784923200000,
+ 65.32,
+ 0
+ ],
+ [
+ 1784926800000,
+ 67.11,
+ 0
+ ],
+ [
+ 1784930400000,
+ 70.68,
+ 0
+ ],
+ [
+ 1784934000000,
+ 70.62,
+ 0
+ ],
+ [
+ 1784937600000,
+ 73.57,
+ 0
+ ],
+ [
+ 1784941200000,
+ 76.56,
+ 0
+ ],
+ [
+ 1784944800000,
+ 81.57,
+ 0
+ ],
+ [
+ 1784948400000,
+ 84.27,
+ 0
+ ],
+ [
+ 1784952000000,
+ 82.38,
+ 0
+ ],
+ [
+ 1784955600000,
+ 82.92,
+ 0
+ ],
+ [
+ 1784959200000,
+ 82.69,
+ 0
+ ],
+ [
+ 1784962800000,
+ 84.55,
+ 0
+ ],
+ [
+ 1784966400000,
+ 83.05,
+ 0
+ ],
+ [
+ 1784970000000,
+ 90.92,
+ 0
+ ],
+ [
+ 1784973600000,
+ 90.72,
+ 0
+ ],
+ [
+ 1784977200000,
+ 88.09,
+ 0
+ ],
+ [
+ 1784980800000,
+ 84.36,
+ 0
+ ],
+ [
+ 1784984400000,
+ 80.35,
+ 0
+ ],
+ [
+ 1784988000000,
+ 75.04,
+ 0
+ ],
+ [
+ 1784991600000,
+ 69.63,
+ 0
+ ],
+ [
+ 1784995200000,
+ 65.78,
+ 0
+ ],
+ [
+ 1784998800000,
+ 60.19,
+ 0
+ ],
+ [
+ 1785002400000,
+ 56.93,
+ 0
+ ],
+ [
+ 1785006000000,
+ 53.72,
+ 0
+ ],
+ [
+ 1785009600000,
+ 52.22,
+ 0
+ ],
+ [
+ 1785013200000,
+ 52.73,
+ 0
+ ],
+ [
+ 1785016800000,
+ 49.32,
+ 0
+ ],
+ [
+ 1785020400000,
+ 47.05,
+ 0
+ ],
+ [
+ 1785024000000,
+ 47.57,
+ 0
+ ],
+ [
+ 1785027600000,
+ 49.6,
+ 0
+ ],
+ [
+ 1785031200000,
+ 57.22,
+ 0
+ ],
+ [
+ 1785034800000,
+ 61.48,
+ 0
+ ],
+ [
+ 1785038400000,
+ 63.66,
+ 0
+ ],
+ [
+ 1785042000000,
+ 64.0,
+ 0
+ ],
+ [
+ 1785045600000,
+ 62.95,
+ 0
+ ],
+ [
+ 1785049200000,
+ 61.03,
+ 0
+ ],
+ [
+ 1785052800000,
+ 59.72,
+ 0
+ ],
+ [
+ 1785056400000,
+ 59.76,
+ 0
+ ],
+ [
+ 1785060000000,
+ 63.2,
+ 0
+ ],
+ [
+ 1785063600000,
+ 61.73,
+ 0
+ ],
+ [
+ 1785067200000,
+ 61.49,
+ 0
+ ],
+ [
+ 1785070800000,
+ 62.59,
+ 0
+ ],
+ [
+ 1785074400000,
+ 61.37,
+ 0
+ ],
+ [
+ 1785078000000,
+ 60.46,
+ 0
+ ],
+ [
+ 1785081600000,
+ 56.23,
+ 0
+ ],
+ [
+ 1785085200000,
+ 54.1,
+ 0
+ ],
+ [
+ 1785088800000,
+ 55.66,
+ 0
+ ],
+ [
+ 1785092400000,
+ 49.64,
+ 0
+ ],
+ [
+ 1785096000000,
+ 44.96,
+ 0
+ ],
+ [
+ 1785099600000,
+ 39.85,
+ 0
+ ],
+ [
+ 1785103200000,
+ 38.43,
+ 0
+ ],
+ [
+ 1785106800000,
+ 42.86,
+ 0
+ ],
+ [
+ 1785110400000,
+ 41.09,
+ 0
+ ],
+ [
+ 1785114000000,
+ 44.47,
+ 0
+ ],
+ [
+ 1785117600000,
+ 50.5,
+ 0
+ ],
+ [
+ 1785121200000,
+ 55.22,
+ 0
+ ],
+ [
+ 1785124800000,
+ 54.92,
+ 0
+ ],
+ [
+ 1785128400000,
+ 56.88,
+ 0
+ ],
+ [
+ 1785132000000,
+ 58.54,
+ 0
+ ],
+ [
+ 1785135600000,
+ 58.24,
+ 0
+ ],
+ [
+ 1785139200000,
+ 60.4,
+ 0
+ ],
+ [
+ 1785142800000,
+ 62.1,
+ 0
+ ],
+ [
+ 1785146400000,
+ 61.68,
+ 0
+ ],
+ [
+ 1785150000000,
+ 63.77,
+ 0
+ ],
+ [
+ 1785153600000,
+ 69.87,
+ 0
+ ],
+ [
+ 1785157200000,
+ 62.68,
+ 0
+ ],
+ [
+ 1785160800000,
+ 58.84,
+ 0
+ ],
+ [
+ 1785164400000,
+ 54.95,
+ 0
+ ],
+ [
+ 1785168000000,
+ 49.31,
+ 0
+ ],
+ [
+ 1785171600000,
+ 45.92,
+ 0
+ ],
+ [
+ 1785175200000,
+ 44.73,
+ 0
+ ],
+ [
+ 1785178800000,
+ 36.11,
+ 0
+ ],
+ [
+ 1785182400000,
+ 37.05,
+ 0
+ ],
+ [
+ 1785186000000,
+ 37.87,
+ 0
+ ],
+ [
+ 1785189600000,
+ 37.18,
+ 0
+ ],
+ [
+ 1785193200000,
+ 35.33,
+ 0
+ ],
+ [
+ 1785196800000,
+ 36.14,
+ 0
+ ],
+ [
+ 1785200400000,
+ 38.65,
+ 0
+ ],
+ [
+ 1785204000000,
+ 45.32,
+ 0
+ ],
+ [
+ 1785207600000,
+ 53.07,
+ 0
+ ],
+ [
+ 1785211200000,
+ 52.34,
+ 0
+ ],
+ [
+ 1785214800000,
+ 54.3,
+ 0
+ ],
+ [
+ 1785218400000,
+ 52.41,
+ 0
+ ],
+ [
+ 1785222000000,
+ 58.26,
+ 0
+ ],
+ [
+ 1785225600000,
+ 62.29,
+ 0
+ ],
+ [
+ 1785229200000,
+ 62.39,
+ 0
+ ],
+ [
+ 1785232800000,
+ 61.62,
+ 0
+ ],
+ [
+ 1785236400000,
+ 60.87,
+ 0
+ ],
+ [
+ 1785240000000,
+ 62.82,
+ 0
+ ],
+ [
+ 1785243600000,
+ 65.0,
+ 0
+ ],
+ [
+ 1785247200000,
+ 64.9,
+ 0
+ ],
+ [
+ 1785250800000,
+ 63.74,
+ 0
+ ],
+ [
+ 1785254400000,
+ 62.12,
+ 0
+ ],
+ [
+ 1785258000000,
+ 60.83,
+ 0
+ ],
+ [
+ 1785261600000,
+ 57.32,
+ 0
+ ],
+ [
+ 1785265200000,
+ 56.55,
+ 0
+ ],
+ [
+ 1785268800000,
+ 59.53,
+ 0
+ ],
+ [
+ 1785272400000,
+ 60.13,
+ 0
+ ],
+ [
+ 1785276000000,
+ 50.41,
+ 0
+ ],
+ [
+ 1785279600000,
+ 45.68,
+ 0
+ ],
+ [
+ 1785283200000,
+ 50.05,
+ 0
+ ],
+ [
+ 1785286800000,
+ 54.45,
+ 0
+ ],
+ [
+ 1785290400000,
+ 67.25,
+ 0
+ ],
+ [
+ 1785294000000,
+ 78.3,
+ 0
+ ],
+ [
+ 1785297600000,
+ 79.63,
+ 0
+ ],
+ [
+ 1785301200000,
+ 74.21,
+ 0
+ ],
+ [
+ 1785304800000,
+ 64.22,
+ 0
+ ],
+ [
+ 1785308400000,
+ 80.54,
+ 0
+ ],
+ [
+ 1785312000000,
+ 74.37,
+ 0
+ ],
+ [
+ 1785315600000,
+ 66.57,
+ 0
+ ],
+ [
+ 1785319200000,
+ 74.43,
+ 0
+ ],
+ [
+ 1785322800000,
+ 63.69,
+ 0
+ ],
+ [
+ 1785326400000,
+ 64.46,
+ 0
+ ],
+ [
+ 1785330000000,
+ 66.62,
+ 0
+ ],
+ [
+ 1785333600000,
+ 65.72,
+ 0
+ ],
+ [
+ 1785337200000,
+ 63.59,
+ 0
+ ],
+ [
+ 1785340800000,
+ 62.27,
+ 0
+ ],
+ [
+ 1785344400000,
+ 58.62,
+ 0
+ ],
+ [
+ 1785348000000,
+ 51.6,
+ 0
+ ],
+ [
+ 1785351600000,
+ 48.06,
+ 0
+ ],
+ [
+ 1785355200000,
+ 48.04,
+ 0
+ ],
+ [
+ 1785358800000,
+ 47.36,
+ 0
+ ],
+ [
+ 1785362400000,
+ 50.19,
+ 0
+ ],
+ [
+ 1785366000000,
+ 62.68,
+ 0
+ ],
+ [
+ 1785369600000,
+ 68.36,
+ 0
+ ],
+ [
+ 1785373200000,
+ 71.28,
+ 0
+ ],
+ [
+ 1785376800000,
+ 89.68,
+ 0
+ ],
+ [
+ 1785380400000,
+ 94.83,
+ 0
+ ],
+ [
+ 1785384000000,
+ 90.27,
+ 0
+ ],
+ [
+ 1785387600000,
+ 93.56,
+ 0
+ ],
+ [
+ 1785391200000,
+ 94.23,
+ 0
+ ],
+ [
+ 1785394800000,
+ 99.19,
+ 0
+ ],
+ [
+ 1785398400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1785402000000,
+ 99.95,
+ 0
+ ],
+ [
+ 1785405600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785409200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1785412800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1785416400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1785420000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785423600000,
+ 99.57,
+ 0
+ ],
+ [
+ 1785427200000,
+ 89.85,
+ 0
+ ],
+ [
+ 1785430800000,
+ 76.61,
+ 0
+ ],
+ [
+ 1785434400000,
+ 68.35,
+ 0
+ ],
+ [
+ 1785438000000,
+ 61.13,
+ 0
+ ],
+ [
+ 1785441600000,
+ 55.41,
+ 0
+ ],
+ [
+ 1785445200000,
+ 52.72,
+ 0
+ ],
+ [
+ 1785448800000,
+ 63.43,
+ 0
+ ],
+ [
+ 1785452400000,
+ 54.75,
+ 0
+ ],
+ [
+ 1785456000000,
+ 56.93,
+ 0
+ ],
+ [
+ 1785459600000,
+ 62.67,
+ 0
+ ],
+ [
+ 1785463200000,
+ 71.23,
+ 0
+ ],
+ [
+ 1785466800000,
+ 76.94,
+ 0
+ ],
+ [
+ 1785470400000,
+ 80.99,
+ 0
+ ],
+ [
+ 1785474000000,
+ 83.22,
+ 0
+ ],
+ [
+ 1785477600000,
+ 85.79,
+ 0
+ ],
+ [
+ 1785481200000,
+ 90.63,
+ 0
+ ],
+ [
+ 1785484800000,
+ 88.62,
+ 0
+ ],
+ [
+ 1785488400000,
+ 82.66,
+ 0
+ ],
+ [
+ 1785492000000,
+ 87.47,
+ 0
+ ],
+ [
+ 1785495600000,
+ 93.2,
+ 0
+ ],
+ [
+ 1785499200000,
+ 93.16,
+ 0
+ ],
+ [
+ 1785502800000,
+ 87.22,
+ 0
+ ],
+ [
+ 1785506400000,
+ 71.05,
+ 0
+ ],
+ [
+ 1785510000000,
+ 62.47,
+ 0
+ ],
+ [
+ 1785513600000,
+ 69.29,
+ 0
+ ],
+ [
+ 1785517200000,
+ 77.46,
+ 0
+ ],
+ [
+ 1785520800000,
+ 57.95,
+ 0
+ ],
+ [
+ 1785524400000,
+ 47.2,
+ 0
+ ],
+ [
+ 1785528000000,
+ 43.23,
+ 0
+ ],
+ [
+ 1785531600000,
+ 38.03,
+ 0
+ ],
+ [
+ 1785535200000,
+ 42.5,
+ 0
+ ],
+ [
+ 1785538800000,
+ 39.17,
+ 0
+ ],
+ [
+ 1785542400000,
+ 36.65,
+ 0
+ ],
+ [
+ 1785546000000,
+ 42.57,
+ 0
+ ],
+ [
+ 1785549600000,
+ 47.03,
+ 0
+ ],
+ [
+ 1785553200000,
+ 50.93,
+ 0
+ ],
+ [
+ 1785556800000,
+ 53.28,
+ 0
+ ],
+ [
+ 1785560400000,
+ 53.95,
+ 0
+ ],
+ [
+ 1785564000000,
+ 55.69,
+ 0
+ ],
+ [
+ 1785567600000,
+ 60.99,
+ 0
+ ],
+ [
+ 1785571200000,
+ 67.69,
+ 0
+ ],
+ [
+ 1785574800000,
+ 67.2,
+ 0
+ ],
+ [
+ 1785578400000,
+ 74.05,
+ 0
+ ],
+ [
+ 1785582000000,
+ 78.26,
+ 0
+ ],
+ [
+ 1785585600000,
+ 77.67,
+ 0
+ ],
+ [
+ 1785589200000,
+ 75.13,
+ 0
+ ],
+ [
+ 1785592800000,
+ 70.0,
+ 0
+ ],
+ [
+ 1785596400000,
+ 65.65,
+ 0
+ ],
+ [
+ 1785600000000,
+ 63.22,
+ 0
+ ],
+ [
+ 1785603600000,
+ 59.54,
+ 0
+ ],
+ [
+ 1785607200000,
+ 54.13,
+ 0
+ ],
+ [
+ 1785610800000,
+ 48.88,
+ 0
+ ],
+ [
+ 1785614400000,
+ 43.93,
+ 0
+ ],
+ [
+ 1785618000000,
+ 40.08,
+ 0
+ ],
+ [
+ 1785621600000,
+ 36.54,
+ 0
+ ],
+ [
+ 1785625200000,
+ 33.99,
+ 0
+ ],
+ [
+ 1785628800000,
+ 35.72,
+ 0
+ ],
+ [
+ 1785632400000,
+ 39.78,
+ 0
+ ],
+ [
+ 1785636000000,
+ 47.55,
+ 0
+ ],
+ [
+ 1785639600000,
+ 52.93,
+ 0
+ ],
+ [
+ 1785643200000,
+ 59.58,
+ 0
+ ],
+ [
+ 1785646800000,
+ 64.22,
+ 0
+ ],
+ [
+ 1785650400000,
+ 66.77,
+ 0
+ ],
+ [
+ 1785654000000,
+ 73.16,
+ 0
+ ],
+ [
+ 1785657600000,
+ 79.52,
+ 0
+ ],
+ [
+ 1785661200000,
+ 77.87,
+ 0
+ ],
+ [
+ 1785664800000,
+ 78.95,
+ 0
+ ],
+ [
+ 1785668400000,
+ 81.32,
+ 0
+ ],
+ [
+ 1785672000000,
+ 82.76,
+ 0
+ ],
+ [
+ 1785675600000,
+ 83.58,
+ 0
+ ],
+ [
+ 1785679200000,
+ 77.79,
+ 0
+ ],
+ [
+ 1785682800000,
+ 67.8,
+ 0
+ ],
+ [
+ 1785686400000,
+ 60.96,
+ 0
+ ],
+ [
+ 1785690000000,
+ 55.54,
+ 0
+ ],
+ [
+ 1785693600000,
+ 51.37,
+ 0
+ ],
+ [
+ 1785697200000,
+ 49.93,
+ 0
+ ],
+ [
+ 1785700800000,
+ 46.24,
+ 0
+ ],
+ [
+ 1785704400000,
+ 44.45,
+ 0
+ ],
+ [
+ 1785708000000,
+ 41.81,
+ 0
+ ],
+ [
+ 1785711600000,
+ 39.71,
+ 0
+ ],
+ [
+ 1785715200000,
+ 39.93,
+ 0
+ ],
+ [
+ 1785718800000,
+ 42.46,
+ 0
+ ],
+ [
+ 1785722400000,
+ 56.18,
+ 0
+ ],
+ [
+ 1785726000000,
+ 70.45,
+ 0
+ ],
+ [
+ 1785729600000,
+ 77.92,
+ 0
+ ],
+ [
+ 1785733200000,
+ 85.28,
+ 0
+ ],
+ [
+ 1785736800000,
+ 89.57,
+ 0
+ ],
+ [
+ 1785740400000,
+ 98.69,
+ 0
+ ],
+ [
+ 1785744000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1785747600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785751200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785754800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785758400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785762000000,
+ 99.45,
+ 0
+ ],
+ [
+ 1785765600000,
+ 93.34,
+ 0
+ ],
+ [
+ 1785769200000,
+ 81.09,
+ 0
+ ],
+ [
+ 1785772800000,
+ 69.36,
+ 0
+ ],
+ [
+ 1785776400000,
+ 57.01,
+ 0
+ ],
+ [
+ 1785780000000,
+ 48.15,
+ 0
+ ],
+ [
+ 1785783600000,
+ 42.87,
+ 0
+ ],
+ [
+ 1785787200000,
+ 40.5,
+ 0
+ ],
+ [
+ 1785790800000,
+ 38.91,
+ 0
+ ],
+ [
+ 1785794400000,
+ 37.33,
+ 0
+ ],
+ [
+ 1785798000000,
+ 36.91,
+ 0
+ ],
+ [
+ 1785801600000,
+ 38.32,
+ 0
+ ],
+ [
+ 1785805200000,
+ 41.63,
+ 0
+ ],
+ [
+ 1785808800000,
+ 50.13,
+ 0
+ ],
+ [
+ 1785812400000,
+ 68.07,
+ 0
+ ],
+ [
+ 1785816000000,
+ 72.26,
+ 0
+ ],
+ [
+ 1785819600000,
+ 74.73,
+ 0
+ ],
+ [
+ 1785823200000,
+ 81.06,
+ 0
+ ],
+ [
+ 1785826800000,
+ 86.3,
+ 0
+ ],
+ [
+ 1785830400000,
+ 85.96,
+ 0
+ ],
+ [
+ 1785834000000,
+ 87.03,
+ 0
+ ],
+ [
+ 1785837600000,
+ 88.68,
+ 0
+ ],
+ [
+ 1785841200000,
+ 90.82,
+ 0
+ ],
+ [
+ 1785844800000,
+ 90.21,
+ 0
+ ],
+ [
+ 1785848400000,
+ 90.32,
+ 0
+ ],
+ [
+ 1785852000000,
+ 85.7,
+ 0
+ ],
+ [
+ 1785855600000,
+ 75.67,
+ 0
+ ],
+ [
+ 1785859200000,
+ 67.15,
+ 0
+ ],
+ [
+ 1785862800000,
+ 58.86,
+ 0
+ ],
+ [
+ 1785866400000,
+ 49.71,
+ 0
+ ],
+ [
+ 1785870000000,
+ 40.47,
+ 0
+ ],
+ [
+ 1785873600000,
+ 35.44,
+ 0
+ ],
+ [
+ 1785877200000,
+ 29.48,
+ 0
+ ],
+ [
+ 1785880800000,
+ 31.06,
+ 0
+ ],
+ [
+ 1785884400000,
+ 32.96,
+ 0
+ ],
+ [
+ 1785888000000,
+ 34.97,
+ 0
+ ],
+ [
+ 1785891600000,
+ 39.57,
+ 0
+ ],
+ [
+ 1785895200000,
+ 49.87,
+ 0
+ ],
+ [
+ 1785898800000,
+ 51.72,
+ 0
+ ],
+ [
+ 1785902400000,
+ 69.56,
+ 0
+ ],
+ [
+ 1785906000000,
+ 63.67,
+ 0
+ ],
+ [
+ 1785909600000,
+ 68.51,
+ 0
+ ],
+ [
+ 1785913200000,
+ 75.57,
+ 0
+ ],
+ [
+ 1785916800000,
+ 73.24,
+ 0
+ ],
+ [
+ 1785920400000,
+ 70.18,
+ 0
+ ],
+ [
+ 1785924000000,
+ 76.06,
+ 0
+ ],
+ [
+ 1785927600000,
+ 78.82,
+ 0
+ ],
+ [
+ 1785931200000,
+ 87.3,
+ 0
+ ],
+ [
+ 1785934800000,
+ 88.51,
+ 0
+ ],
+ [
+ 1785938400000,
+ 82.85,
+ 0
+ ],
+ [
+ 1785942000000,
+ 74.94,
+ 0
+ ],
+ [
+ 1785945600000,
+ 66.28,
+ 0
+ ],
+ [
+ 1785949200000,
+ 49.38,
+ 0
+ ],
+ [
+ 1785952800000,
+ 38.7,
+ 0
+ ],
+ [
+ 1785956400000,
+ 33.24,
+ 0
+ ],
+ [
+ 1785960000000,
+ 33.71,
+ 0
+ ],
+ [
+ 1785963600000,
+ 35.92,
+ 0
+ ],
+ [
+ 1785967200000,
+ 29.16,
+ 0
+ ],
+ [
+ 1785970800000,
+ 26.09,
+ 0
+ ],
+ [
+ 1785974400000,
+ 27.41,
+ 0
+ ],
+ [
+ 1785978000000,
+ 35.13,
+ 0
+ ],
+ [
+ 1785981600000,
+ 44.76,
+ 0
+ ],
+ [
+ 1785985200000,
+ 48.83,
+ 0
+ ],
+ [
+ 1785988800000,
+ 47.64,
+ 0
+ ],
+ [
+ 1785992400000,
+ 72.17,
+ 0
+ ],
+ [
+ 1785996000000,
+ 80.03,
+ 0
+ ],
+ [
+ 1785999600000,
+ 60.18,
+ 0
+ ],
+ [
+ 1786003200000,
+ 63.52,
+ 0
+ ],
+ [
+ 1786006800000,
+ 65.12,
+ 0
+ ],
+ [
+ 1786010400000,
+ 68.72,
+ 0
+ ],
+ [
+ 1786014000000,
+ 70.63,
+ 0
+ ],
+ [
+ 1786017600000,
+ 71.89,
+ 0
+ ],
+ [
+ 1786021200000,
+ 72.79,
+ 0
+ ],
+ [
+ 1786024800000,
+ 68.92,
+ 0
+ ],
+ [
+ 1786028400000,
+ 61.48,
+ 0
+ ],
+ [
+ 1786032000000,
+ 60.32,
+ 0
+ ],
+ [
+ 1786035600000,
+ 53.62,
+ 0
+ ],
+ [
+ 1786039200000,
+ 50.42,
+ 0
+ ],
+ [
+ 1786042800000,
+ 48.96,
+ 0
+ ],
+ [
+ 1786046400000,
+ 40.58,
+ 0
+ ],
+ [
+ 1786050000000,
+ 39.46,
+ 0
+ ],
+ [
+ 1786053600000,
+ 34.24,
+ 0
+ ],
+ [
+ 1786057200000,
+ 36.71,
+ 0
+ ],
+ [
+ 1786060800000,
+ 30.75,
+ 0
+ ],
+ [
+ 1786064400000,
+ 31.28,
+ 0
+ ],
+ [
+ 1786068000000,
+ 45.55,
+ 0
+ ],
+ [
+ 1786071600000,
+ 49.57,
+ 0
+ ],
+ [
+ 1786075200000,
+ 46.6,
+ 0
+ ],
+ [
+ 1786078800000,
+ 50.81,
+ 0
+ ],
+ [
+ 1786082400000,
+ 76.72,
+ 0
+ ],
+ [
+ 1786086000000,
+ 69.62,
+ 0
+ ],
+ [
+ 1786089600000,
+ 69.78,
+ 0
+ ],
+ [
+ 1786093200000,
+ 82.15,
+ 0
+ ],
+ [
+ 1786096800000,
+ 88.34,
+ 0
+ ],
+ [
+ 1786100400000,
+ 92.7,
+ 0
+ ],
+ [
+ 1786104000000,
+ 96.06,
+ 0
+ ],
+ [
+ 1786107600000,
+ 94.22,
+ 0
+ ],
+ [
+ 1786111200000,
+ 84.1,
+ 0
+ ],
+ [
+ 1786114800000,
+ 70.39,
+ 0
+ ],
+ [
+ 1786118400000,
+ 69.18,
+ 0
+ ],
+ [
+ 1786122000000,
+ 62.49,
+ 0
+ ],
+ [
+ 1786125600000,
+ 55.5,
+ 0
+ ],
+ [
+ 1786129200000,
+ 50.43,
+ 0
+ ],
+ [
+ 1786132800000,
+ 49.01,
+ 0
+ ],
+ [
+ 1786136400000,
+ 54.17,
+ 0
+ ],
+ [
+ 1786140000000,
+ 68.33,
+ 0
+ ],
+ [
+ 1786143600000,
+ 60.15,
+ 0
+ ],
+ [
+ 1786147200000,
+ 50.27,
+ 0
+ ],
+ [
+ 1786150800000,
+ 58.94,
+ 0
+ ],
+ [
+ 1786154400000,
+ 60.17,
+ 0
+ ],
+ [
+ 1786158000000,
+ 75.92,
+ 0
+ ],
+ [
+ 1786161600000,
+ 71.82,
+ 0
+ ],
+ [
+ 1786165200000,
+ 75.26,
+ 0
+ ],
+ [
+ 1786168800000,
+ 74.26,
+ 0
+ ],
+ [
+ 1786172400000,
+ 75.49,
+ 0
+ ],
+ [
+ 1786176000000,
+ 86.36,
+ 0
+ ],
+ [
+ 1786179600000,
+ 91.47,
+ 0
+ ],
+ [
+ 1786183200000,
+ 88.58,
+ 0
+ ],
+ [
+ 1786186800000,
+ 92.89,
+ 0
+ ],
+ [
+ 1786190400000,
+ 98.29,
+ 0
+ ],
+ [
+ 1786194000000,
+ 98.26,
+ 0
+ ],
+ [
+ 1786197600000,
+ 88.14,
+ 0
+ ],
+ [
+ 1786201200000,
+ 79.67,
+ 0
+ ],
+ [
+ 1786204800000,
+ 70.68,
+ 0
+ ],
+ [
+ 1786208400000,
+ 56.52,
+ 0
+ ],
+ [
+ 1786212000000,
+ 62.72,
+ 0
+ ],
+ [
+ 1786215600000,
+ 58.56,
+ 0
+ ],
+ [
+ 1786219200000,
+ 57.74,
+ 0
+ ],
+ [
+ 1786222800000,
+ 48.82,
+ 0
+ ],
+ [
+ 1786226400000,
+ 35.52,
+ 0
+ ],
+ [
+ 1786230000000,
+ 45.58,
+ 0
+ ],
+ [
+ 1786233600000,
+ 49.52,
+ 0
+ ],
+ [
+ 1786237200000,
+ 50.97,
+ 0
+ ],
+ [
+ 1786240800000,
+ 51.92,
+ 0
+ ],
+ [
+ 1786244400000,
+ 53.02,
+ 0
+ ],
+ [
+ 1786248000000,
+ 53.66,
+ 0
+ ],
+ [
+ 1786251600000,
+ 57.03,
+ 0
+ ],
+ [
+ 1786255200000,
+ 62.79,
+ 0
+ ],
+ [
+ 1786258800000,
+ 65.32,
+ 0
+ ],
+ [
+ 1786262400000,
+ 70.29,
+ 0
+ ],
+ [
+ 1786266000000,
+ 73.01,
+ 0
+ ],
+ [
+ 1786269600000,
+ 77.52,
+ 0
+ ],
+ [
+ 1786273200000,
+ 82.6,
+ 0
+ ],
+ [
+ 1786276800000,
+ 84.89,
+ 0
+ ],
+ [
+ 1786280400000,
+ 77.66,
+ 0
+ ],
+ [
+ 1786284000000,
+ 75.99,
+ 0
+ ],
+ [
+ 1786287600000,
+ 70.76,
+ 0
+ ],
+ [
+ 1786291200000,
+ 63.41,
+ 0
+ ],
+ [
+ 1786294800000,
+ 55.72,
+ 0
+ ],
+ [
+ 1786298400000,
+ 46.19,
+ 0
+ ],
+ [
+ 1786302000000,
+ 40.14,
+ 0
+ ],
+ [
+ 1786305600000,
+ 37.07,
+ 0
+ ],
+ [
+ 1786309200000,
+ 35.97,
+ 0
+ ],
+ [
+ 1786312800000,
+ 34.79,
+ 0
+ ],
+ [
+ 1786316400000,
+ 32.07,
+ 0
+ ],
+ [
+ 1786320000000,
+ 33.77,
+ 0
+ ],
+ [
+ 1786323600000,
+ 40.06,
+ 0
+ ],
+ [
+ 1786327200000,
+ 49.36,
+ 0
+ ],
+ [
+ 1786330800000,
+ 51.37,
+ 0
+ ],
+ [
+ 1786334400000,
+ 56.26,
+ 0
+ ],
+ [
+ 1786338000000,
+ 61.11,
+ 0
+ ],
+ [
+ 1786341600000,
+ 63.12,
+ 0
+ ],
+ [
+ 1786345200000,
+ 68.17,
+ 0
+ ],
+ [
+ 1786348800000,
+ 71.62,
+ 0
+ ],
+ [
+ 1786352400000,
+ 73.96,
+ 0
+ ],
+ [
+ 1786356000000,
+ 75.77,
+ 0
+ ],
+ [
+ 1786359600000,
+ 75.46,
+ 0
+ ],
+ [
+ 1786363200000,
+ 76.26,
+ 0
+ ],
+ [
+ 1786366800000,
+ 76.79,
+ 0
+ ],
+ [
+ 1786370400000,
+ 74.48,
+ 0
+ ],
+ [
+ 1786374000000,
+ 69.1,
+ 0
+ ],
+ [
+ 1786377600000,
+ 62.42,
+ 0
+ ],
+ [
+ 1786381200000,
+ 54.7,
+ 0
+ ],
+ [
+ 1786384800000,
+ 49.56,
+ 0
+ ],
+ [
+ 1786388400000,
+ 42.92,
+ 0
+ ],
+ [
+ 1786392000000,
+ 45.14,
+ 0
+ ],
+ [
+ 1786395600000,
+ 40.94,
+ 0
+ ],
+ [
+ 1786399200000,
+ 35.87,
+ 0
+ ],
+ [
+ 1786402800000,
+ 33.29,
+ 0
+ ],
+ [
+ 1786406400000,
+ 33.15,
+ 0
+ ],
+ [
+ 1786410000000,
+ 39.13,
+ 0
+ ],
+ [
+ 1786413600000,
+ 44.15,
+ 0
+ ],
+ [
+ 1786417200000,
+ 49.5,
+ 0
+ ],
+ [
+ 1786420800000,
+ 54.88,
+ 0
+ ],
+ [
+ 1786424400000,
+ 60.31,
+ 0
+ ],
+ [
+ 1786428000000,
+ 71.25,
+ 0
+ ],
+ [
+ 1786431600000,
+ 67.31,
+ 0
+ ],
+ [
+ 1786435200000,
+ 70.28,
+ 0
+ ],
+ [
+ 1786438800000,
+ 71.96,
+ 0
+ ],
+ [
+ 1786442400000,
+ 73.26,
+ 0
+ ],
+ [
+ 1786446000000,
+ 77.47,
+ 0
+ ],
+ [
+ 1786449600000,
+ 79.98,
+ 0
+ ],
+ [
+ 1786453200000,
+ 81.69,
+ 0
+ ],
+ [
+ 1786456800000,
+ 76.7,
+ 0
+ ],
+ [
+ 1786460400000,
+ 66.54,
+ 0
+ ],
+ [
+ 1786464000000,
+ 58.2,
+ 0
+ ],
+ [
+ 1786467600000,
+ 51.8,
+ 0
+ ],
+ [
+ 1786471200000,
+ 48.06,
+ 0
+ ],
+ [
+ 1786474800000,
+ 42.2,
+ 0
+ ],
+ [
+ 1786478400000,
+ 40.94,
+ 0
+ ],
+ [
+ 1786482000000,
+ 38.18,
+ 0
+ ],
+ [
+ 1786485600000,
+ 36.43,
+ 0
+ ],
+ [
+ 1786489200000,
+ 36.33,
+ 0
+ ],
+ [
+ 1786492800000,
+ 36.33,
+ 0
+ ],
+ [
+ 1786496400000,
+ 40.86,
+ 0
+ ],
+ [
+ 1786500000000,
+ 45.6,
+ 0
+ ],
+ [
+ 1786503600000,
+ 49.89,
+ 0
+ ],
+ [
+ 1786507200000,
+ 54.86,
+ 0
+ ],
+ [
+ 1786510800000,
+ 61.57,
+ 0
+ ],
+ [
+ 1786514400000,
+ 62.99,
+ 0
+ ],
+ [
+ 1786518000000,
+ 62.36,
+ 0
+ ],
+ [
+ 1786521600000,
+ 63.65,
+ 0
+ ],
+ [
+ 1786525200000,
+ 64.76,
+ 0
+ ],
+ [
+ 1786528800000,
+ 65.33,
+ 0
+ ],
+ [
+ 1786532400000,
+ 68.22,
+ 0
+ ],
+ [
+ 1786536000000,
+ 70.46,
+ 0
+ ],
+ [
+ 1786539600000,
+ 72.27,
+ 0
+ ],
+ [
+ 1786543200000,
+ 70.24,
+ 0
+ ],
+ [
+ 1786546800000,
+ 65.5,
+ 0
+ ],
+ [
+ 1786550400000,
+ 59.83,
+ 0
+ ],
+ [
+ 1786554000000,
+ 54.37,
+ 0
+ ],
+ [
+ 1786557600000,
+ 48.02,
+ 0
+ ],
+ [
+ 1786561200000,
+ 44.03,
+ 0
+ ],
+ [
+ 1786564800000,
+ 39.51,
+ 0
+ ],
+ [
+ 1786568400000,
+ 34.56,
+ 0
+ ],
+ [
+ 1786572000000,
+ 34.57,
+ 0
+ ],
+ [
+ 1786575600000,
+ 34.29,
+ 0
+ ],
+ [
+ 1786579200000,
+ 34.67,
+ 0
+ ],
+ [
+ 1786582800000,
+ 38.22,
+ 0
+ ],
+ [
+ 1786586400000,
+ 43.33,
+ 0
+ ],
+ [
+ 1786590000000,
+ 48.89,
+ 0
+ ],
+ [
+ 1786593600000,
+ 55.88,
+ 0
+ ],
+ [
+ 1786597200000,
+ 59.76,
+ 0
+ ],
+ [
+ 1786600800000,
+ 59.24,
+ 0
+ ],
+ [
+ 1786604400000,
+ 56.5,
+ 0
+ ],
+ [
+ 1786608000000,
+ 57.58,
+ 0
+ ],
+ [
+ 1786611600000,
+ 58.72,
+ 0
+ ],
+ [
+ 1786615200000,
+ 60.66,
+ 0
+ ],
+ [
+ 1786618800000,
+ 63.76,
+ 0
+ ],
+ [
+ 1786622400000,
+ 66.98,
+ 0
+ ],
+ [
+ 1786626000000,
+ 66.28,
+ 0
+ ],
+ [
+ 1786629600000,
+ 60.46,
+ 0
+ ],
+ [
+ 1786633200000,
+ 57.5,
+ 0
+ ],
+ [
+ 1786636800000,
+ 52.15,
+ 0
+ ],
+ [
+ 1786640400000,
+ 47.34,
+ 0
+ ],
+ [
+ 1786644000000,
+ 43.54,
+ 0
+ ],
+ [
+ 1786647600000,
+ 40.4,
+ 0
+ ],
+ [
+ 1786651200000,
+ 35.88,
+ 0
+ ],
+ [
+ 1786654800000,
+ 33.76,
+ 0
+ ],
+ [
+ 1786658400000,
+ 31.41,
+ 0
+ ],
+ [
+ 1786662000000,
+ 33.8,
+ 0
+ ],
+ [
+ 1786665600000,
+ 34.13,
+ 0
+ ],
+ [
+ 1786669200000,
+ 36.05,
+ 0
+ ],
+ [
+ 1786672800000,
+ 41.94,
+ 0
+ ],
+ [
+ 1786676400000,
+ 45.99,
+ 0
+ ],
+ [
+ 1786680000000,
+ 46.73,
+ 0
+ ],
+ [
+ 1786683600000,
+ 50.33,
+ 0
+ ],
+ [
+ 1786687200000,
+ 56.67,
+ 0
+ ],
+ [
+ 1786690800000,
+ 55.21,
+ 0
+ ],
+ [
+ 1786694400000,
+ 57.46,
+ 0
+ ],
+ [
+ 1786698000000,
+ 57.31,
+ 0
+ ],
+ [
+ 1786701600000,
+ 61.02,
+ 0
+ ],
+ [
+ 1786705200000,
+ 64.04,
+ 0
+ ],
+ [
+ 1786708800000,
+ 67.45,
+ 0
+ ],
+ [
+ 1786712400000,
+ 69.14,
+ 0
+ ],
+ [
+ 1786716000000,
+ 62.59,
+ 0
+ ],
+ [
+ 1786719600000,
+ 54.9,
+ 0
+ ],
+ [
+ 1786723200000,
+ 51.74,
+ 0
+ ],
+ [
+ 1786726800000,
+ 48.68,
+ 0
+ ],
+ [
+ 1786730400000,
+ 44.72,
+ 0
+ ],
+ [
+ 1786734000000,
+ 41.81,
+ 0
+ ],
+ [
+ 1786737600000,
+ 38.11,
+ 0
+ ],
+ [
+ 1786741200000,
+ 35.24,
+ 0
+ ],
+ [
+ 1786744800000,
+ 33.2,
+ 0
+ ],
+ [
+ 1786748400000,
+ 31.68,
+ 0
+ ],
+ [
+ 1786752000000,
+ 31.82,
+ 0
+ ],
+ [
+ 1786755600000,
+ 33.72,
+ 0
+ ],
+ [
+ 1786759200000,
+ 36.04,
+ 0
+ ],
+ [
+ 1786762800000,
+ 39.67,
+ 0
+ ],
+ [
+ 1786766400000,
+ 51.08,
+ 0
+ ],
+ [
+ 1786770000000,
+ 61.2,
+ 0
+ ],
+ [
+ 1786773600000,
+ 67.13,
+ 0
+ ],
+ [
+ 1786777200000,
+ 60.63,
+ 0
+ ],
+ [
+ 1786780800000,
+ 63.97,
+ 0
+ ],
+ [
+ 1786784400000,
+ 57.5,
+ 0
+ ],
+ [
+ 1786788000000,
+ 63.33,
+ 0
+ ],
+ [
+ 1786791600000,
+ 73.03,
+ 0
+ ],
+ [
+ 1786795200000,
+ 76.31,
+ 0
+ ],
+ [
+ 1786798800000,
+ 77.73,
+ 0
+ ],
+ [
+ 1786802400000,
+ 73.76,
+ 0
+ ],
+ [
+ 1786806000000,
+ 67.67,
+ 0
+ ],
+ [
+ 1786809600000,
+ 60.29,
+ 0
+ ],
+ [
+ 1786813200000,
+ 51.49,
+ 0
+ ],
+ [
+ 1786816800000,
+ 45.16,
+ 0
+ ],
+ [
+ 1786820400000,
+ 41.25,
+ 0
+ ],
+ [
+ 1786824000000,
+ 37.24,
+ 0
+ ],
+ [
+ 1786827600000,
+ 33.7,
+ 0
+ ],
+ [
+ 1786831200000,
+ 35.04,
+ 0
+ ],
+ [
+ 1786834800000,
+ 35.82,
+ 0
+ ],
+ [
+ 1786838400000,
+ 36.94,
+ 0
+ ],
+ [
+ 1786842000000,
+ 40.34,
+ 0
+ ],
+ [
+ 1786845600000,
+ 45.05,
+ 0
+ ],
+ [
+ 1786849200000,
+ 49.75,
+ 0
+ ],
+ [
+ 1786852800000,
+ 53.91,
+ 0
+ ],
+ [
+ 1786856400000,
+ 57.86,
+ 0
+ ],
+ [
+ 1786860000000,
+ 64.74,
+ 0
+ ],
+ [
+ 1786863600000,
+ 62.0,
+ 0
+ ],
+ [
+ 1786867200000,
+ 59.63,
+ 0
+ ],
+ [
+ 1786870800000,
+ 59.22,
+ 0
+ ],
+ [
+ 1786874400000,
+ 59.02,
+ 0
+ ],
+ [
+ 1786878000000,
+ 58.15,
+ 0
+ ],
+ [
+ 1786881600000,
+ 60.13,
+ 0
+ ],
+ [
+ 1786885200000,
+ 60.85,
+ 0
+ ],
+ [
+ 1786888800000,
+ 58.94,
+ 0
+ ],
+ [
+ 1786892400000,
+ 54.05,
+ 0
+ ],
+ [
+ 1786896000000,
+ 49.84,
+ 0
+ ],
+ [
+ 1786899600000,
+ 45.85,
+ 0
+ ],
+ [
+ 1786903200000,
+ 43.24,
+ 0
+ ],
+ [
+ 1786906800000,
+ 39.6,
+ 0
+ ],
+ [
+ 1786910400000,
+ 35.12,
+ 0
+ ],
+ [
+ 1786914000000,
+ 35.7,
+ 0
+ ],
+ [
+ 1786917600000,
+ 33.65,
+ 0
+ ],
+ [
+ 1786921200000,
+ 34.97,
+ 0
+ ],
+ [
+ 1786924800000,
+ 30.66,
+ 0
+ ],
+ [
+ 1786928400000,
+ 31.86,
+ 0
+ ],
+ [
+ 1786932000000,
+ 36.62,
+ 0
+ ],
+ [
+ 1786935600000,
+ 41.11,
+ 0
+ ],
+ [
+ 1786939200000,
+ 44.61,
+ 0
+ ],
+ [
+ 1786942800000,
+ 60.27,
+ 0
+ ],
+ [
+ 1786946400000,
+ 59.7,
+ 0
+ ],
+ [
+ 1786950000000,
+ 60.16,
+ 0
+ ],
+ [
+ 1786953600000,
+ 65.65,
+ 0
+ ],
+ [
+ 1786957200000,
+ 74.56,
+ 0
+ ],
+ [
+ 1786960800000,
+ 82.55,
+ 0
+ ],
+ [
+ 1786964400000,
+ 87.15,
+ 0
+ ],
+ [
+ 1786968000000,
+ 91.26,
+ 0
+ ],
+ [
+ 1786971600000,
+ 94.63,
+ 0
+ ],
+ [
+ 1786975200000,
+ 85.62,
+ 0
+ ],
+ [
+ 1786978800000,
+ 81.73,
+ 0
+ ],
+ [
+ 1786982400000,
+ 71.31,
+ 0
+ ],
+ [
+ 1786986000000,
+ 52.68,
+ 0
+ ],
+ [
+ 1786989600000,
+ 48.19,
+ 0
+ ],
+ [
+ 1786993200000,
+ 42.96,
+ 0
+ ],
+ [
+ 1786996800000,
+ 54.31,
+ 0
+ ],
+ [
+ 1787000400000,
+ 58.6,
+ 0
+ ],
+ [
+ 1787004000000,
+ 40.53,
+ 0
+ ],
+ [
+ 1787007600000,
+ 52.04,
+ 0
+ ],
+ [
+ 1787011200000,
+ 60.53,
+ 0
+ ],
+ [
+ 1787014800000,
+ 63.54,
+ 0
+ ],
+ [
+ 1787018400000,
+ 70.34,
+ 0
+ ],
+ [
+ 1787022000000,
+ 77.21,
+ 0
+ ],
+ [
+ 1787025600000,
+ 85.49,
+ 0
+ ],
+ [
+ 1787029200000,
+ 84.72,
+ 0
+ ],
+ [
+ 1787032800000,
+ 90.79,
+ 0
+ ],
+ [
+ 1787036400000,
+ 90.44,
+ 0
+ ],
+ [
+ 1787040000000,
+ 96.85,
+ 0
+ ],
+ [
+ 1787043600000,
+ 97.65,
+ 0
+ ],
+ [
+ 1787047200000,
+ 99.14,
+ 0
+ ],
+ [
+ 1787050800000,
+ 99.69,
+ 0
+ ],
+ [
+ 1787054400000,
+ 100.05,
+ 0
+ ],
+ [
+ 1787058000000,
+ 100.0,
+ 0
+ ],
+ [
+ 1787061600000,
+ 96.36,
+ 0
+ ],
+ [
+ 1787065200000,
+ 85.38,
+ 0
+ ],
+ [
+ 1787068800000,
+ 71.16,
+ 0
+ ],
+ [
+ 1787072400000,
+ 46.9,
+ 0
+ ],
+ [
+ 1787076000000,
+ 43.13,
+ 0
+ ],
+ [
+ 1787079600000,
+ 31.95,
+ 0
+ ],
+ [
+ 1787083200000,
+ 28.55,
+ 0
+ ],
+ [
+ 1787086800000,
+ 31.31,
+ 0
+ ],
+ [
+ 1787090400000,
+ 25.26,
+ 0
+ ],
+ [
+ 1787094000000,
+ 25.45,
+ 0
+ ],
+ [
+ 1787097600000,
+ 28.89,
+ 0
+ ],
+ [
+ 1787101200000,
+ 21.87,
+ 0
+ ],
+ [
+ 1787104800000,
+ 27.02,
+ 0
+ ],
+ [
+ 1787108400000,
+ 30.26,
+ 0
+ ],
+ [
+ 1787112000000,
+ 32.4,
+ 0
+ ],
+ [
+ 1787115600000,
+ 34.8,
+ 0
+ ],
+ [
+ 1787119200000,
+ 36.56,
+ 0
+ ],
+ [
+ 1787122800000,
+ 36.53,
+ 0
+ ],
+ [
+ 1787126400000,
+ 34.71,
+ 0
+ ],
+ [
+ 1787130000000,
+ 37.52,
+ 0
+ ],
+ [
+ 1787133600000,
+ 40.62,
+ 0
+ ],
+ [
+ 1787137200000,
+ 42.24,
+ 0
+ ],
+ [
+ 1787140800000,
+ 45.96,
+ 0
+ ],
+ [
+ 1787144400000,
+ 46.98,
+ 0
+ ],
+ [
+ 1787148000000,
+ 44.03,
+ 0
+ ],
+ [
+ 1787151600000,
+ 39.37,
+ 0
+ ],
+ [
+ 1787155200000,
+ 34.47,
+ 0
+ ],
+ [
+ 1787158800000,
+ 28.38,
+ 0
+ ],
+ [
+ 1787162400000,
+ 35.01,
+ 0
+ ],
+ [
+ 1787166000000,
+ 37.24,
+ 0
+ ],
+ [
+ 1787169600000,
+ 35.08,
+ 0
+ ],
+ [
+ 1787173200000,
+ 27.68,
+ 0
+ ],
+ [
+ 1787176800000,
+ 25.5,
+ 0
+ ],
+ [
+ 1787180400000,
+ 24.91,
+ 0
+ ],
+ [
+ 1787184000000,
+ 21.48,
+ 0
+ ],
+ [
+ 1787187600000,
+ 24.89,
+ 0
+ ],
+ [
+ 1787191200000,
+ 25.91,
+ 0
+ ],
+ [
+ 1787194800000,
+ 28.95,
+ 0
+ ],
+ [
+ 1787198400000,
+ 44.14,
+ 0
+ ],
+ [
+ 1787202000000,
+ 34.39,
+ 0
+ ],
+ [
+ 1787205600000,
+ 36.13,
+ 0
+ ],
+ [
+ 1787209200000,
+ 38.8,
+ 0
+ ],
+ [
+ 1787212800000,
+ 43.81,
+ 0
+ ],
+ [
+ 1787216400000,
+ 42.62,
+ 0
+ ],
+ [
+ 1787220000000,
+ 48.6,
+ 0
+ ],
+ [
+ 1787223600000,
+ 50.38,
+ 0
+ ],
+ [
+ 1787227200000,
+ 54.06,
+ 0
+ ],
+ [
+ 1787230800000,
+ 69.12,
+ 0
+ ],
+ [
+ 1787234400000,
+ 67.92,
+ 0
+ ],
+ [
+ 1787238000000,
+ 68.94,
+ 0
+ ],
+ [
+ 1787241600000,
+ 62.8,
+ 0
+ ],
+ [
+ 1787245200000,
+ 52.48,
+ 0
+ ],
+ [
+ 1787248800000,
+ 48.67,
+ 0
+ ],
+ [
+ 1787252400000,
+ 47.5,
+ 0
+ ],
+ [
+ 1787256000000,
+ 44.86,
+ 0
+ ],
+ [
+ 1787259600000,
+ 35.66,
+ 0
+ ],
+ [
+ 1787263200000,
+ 37.85,
+ 0
+ ],
+ [
+ 1787266800000,
+ 29.5,
+ 0
+ ],
+ [
+ 1787270400000,
+ 27.68,
+ 0
+ ],
+ [
+ 1787274000000,
+ 26.69,
+ 0
+ ],
+ [
+ 1787277600000,
+ 34.05,
+ 0
+ ],
+ [
+ 1787281200000,
+ 39.18,
+ 0
+ ],
+ [
+ 1787284800000,
+ 41.62,
+ 0
+ ],
+ [
+ 1787288400000,
+ 45.66,
+ 0
+ ],
+ [
+ 1787292000000,
+ 52.0,
+ 0
+ ],
+ [
+ 1787295600000,
+ 50.11,
+ 0
+ ],
+ [
+ 1787299200000,
+ 54.64,
+ 0
+ ],
+ [
+ 1787302800000,
+ 54.55,
+ 0
+ ],
+ [
+ 1787306400000,
+ 57.99,
+ 0
+ ],
+ [
+ 1787310000000,
+ 65.24,
+ 0
+ ],
+ [
+ 1787313600000,
+ 79.83,
+ 0
+ ],
+ [
+ 1787317200000,
+ 89.71,
+ 0
+ ],
+ [
+ 1787320800000,
+ 85.66,
+ 0
+ ],
+ [
+ 1787324400000,
+ 78.96,
+ 0
+ ],
+ [
+ 1787328000000,
+ 69.97,
+ 0
+ ],
+ [
+ 1787331600000,
+ 63.26,
+ 0
+ ],
+ [
+ 1787335200000,
+ 55.74,
+ 0
+ ],
+ [
+ 1787338800000,
+ 55.65,
+ 0
+ ],
+ [
+ 1787342400000,
+ 50.01,
+ 0
+ ],
+ [
+ 1787346000000,
+ 33.37,
+ 0
+ ],
+ [
+ 1787349600000,
+ 29.06,
+ 0
+ ],
+ [
+ 1787353200000,
+ 35.52,
+ 0
+ ],
+ [
+ 1787356800000,
+ 38.97,
+ 0
+ ],
+ [
+ 1787360400000,
+ 37.97,
+ 0
+ ],
+ [
+ 1787364000000,
+ 47.04,
+ 0
+ ],
+ [
+ 1787367600000,
+ 46.06,
+ 0
+ ],
+ [
+ 1787371200000,
+ 50.1,
+ 0
+ ],
+ [
+ 1787374800000,
+ 47.83,
+ 0
+ ],
+ [
+ 1787378400000,
+ 47.56,
+ 0
+ ],
+ [
+ 1787382000000,
+ 48.31,
+ 0
+ ],
+ [
+ 1787385600000,
+ 72.74,
+ 0
+ ],
+ [
+ 1787389200000,
+ 89.35,
+ 0
+ ],
+ [
+ 1787392800000,
+ 93.65,
+ 0
+ ],
+ [
+ 1787396400000,
+ 94.48,
+ 0
+ ],
+ [
+ 1787400000000,
+ 97.31,
+ 0
+ ],
+ [
+ 1787403600000,
+ 95.87,
+ 0
+ ],
+ [
+ 1787407200000,
+ 81.64,
+ 0
+ ],
+ [
+ 1787410800000,
+ 63.41,
+ 0
+ ],
+ [
+ 1787414400000,
+ 59.98,
+ 0
+ ],
+ [
+ 1787418000000,
+ 68.28,
+ 0
+ ],
+ [
+ 1787421600000,
+ 64.72,
+ 0
+ ],
+ [
+ 1787425200000,
+ 64.73,
+ 0
+ ],
+ [
+ 1787428800000,
+ 58.78,
+ 0
+ ],
+ [
+ 1787432400000,
+ 45.9,
+ 0
+ ],
+ [
+ 1787436000000,
+ 41.72,
+ 0
+ ],
+ [
+ 1787439600000,
+ 49.15,
+ 0
+ ],
+ [
+ 1787443200000,
+ 52.38,
+ 0
+ ],
+ [
+ 1787446800000,
+ 55.62,
+ 0
+ ],
+ [
+ 1787450400000,
+ 68.78,
+ 0
+ ],
+ [
+ 1787454000000,
+ 81.32,
+ 0
+ ],
+ [
+ 1787457600000,
+ 82.18,
+ 0
+ ],
+ [
+ 1787461200000,
+ 83.3,
+ 0
+ ],
+ [
+ 1787464800000,
+ 77.28,
+ 0
+ ],
+ [
+ 1787468400000,
+ 82.42,
+ 0
+ ],
+ [
+ 1787472000000,
+ 83.61,
+ 0
+ ],
+ [
+ 1787475600000,
+ 86.51,
+ 0
+ ],
+ [
+ 1787479200000,
+ 89.47,
+ 0
+ ],
+ [
+ 1787482800000,
+ 90.16,
+ 0
+ ],
+ [
+ 1787486400000,
+ 94.8,
+ 0
+ ],
+ [
+ 1787490000000,
+ 95.2,
+ 0
+ ],
+ [
+ 1787493600000,
+ 88.92,
+ 0
+ ],
+ [
+ 1787497200000,
+ 79.97,
+ 0
+ ],
+ [
+ 1787500800000,
+ 67.0,
+ 0
+ ],
+ [
+ 1787504400000,
+ 59.22,
+ 0
+ ],
+ [
+ 1787508000000,
+ 53.26,
+ 0
+ ],
+ [
+ 1787511600000,
+ 45.54,
+ 0
+ ],
+ [
+ 1787515200000,
+ 39.69,
+ 0
+ ],
+ [
+ 1787518800000,
+ 38.14,
+ 0
+ ],
+ [
+ 1787522400000,
+ 36.28,
+ 0
+ ],
+ [
+ 1787526000000,
+ 34.63,
+ 0
+ ],
+ [
+ 1787529600000,
+ 32.62,
+ 0
+ ],
+ [
+ 1787533200000,
+ 37.14,
+ 0
+ ],
+ [
+ 1787536800000,
+ 44.94,
+ 0
+ ],
+ [
+ 1787540400000,
+ 54.67,
+ 0
+ ],
+ [
+ 1787544000000,
+ 58.34,
+ 0
+ ],
+ [
+ 1787547600000,
+ 57.3,
+ 0
+ ],
+ [
+ 1787551200000,
+ 60.82,
+ 0
+ ],
+ [
+ 1787554800000,
+ 60.53,
+ 0
+ ],
+ [
+ 1787558400000,
+ 65.0,
+ 0
+ ],
+ [
+ 1787562000000,
+ 69.04,
+ 0
+ ],
+ [
+ 1787565600000,
+ 72.78,
+ 0
+ ],
+ [
+ 1787569200000,
+ 74.53,
+ 0
+ ],
+ [
+ 1787572800000,
+ 84.6,
+ 0
+ ],
+ [
+ 1787576400000,
+ 91.4,
+ 0
+ ],
+ [
+ 1787580000000,
+ 96.17,
+ 0
+ ],
+ [
+ 1787583600000,
+ 94.98,
+ 0
+ ],
+ [
+ 1787587200000,
+ 89.86,
+ 0
+ ],
+ [
+ 1787590800000,
+ 81.79,
+ 0
+ ],
+ [
+ 1787594400000,
+ 73.04,
+ 0
+ ],
+ [
+ 1787598000000,
+ 66.25,
+ 0
+ ],
+ [
+ 1787601600000,
+ 65.2,
+ 0
+ ],
+ [
+ 1787605200000,
+ 64.98,
+ 0
+ ],
+ [
+ 1787608800000,
+ 64.32,
+ 0
+ ],
+ [
+ 1787612400000,
+ 63.51,
+ 0
+ ],
+ [
+ 1787616000000,
+ 61.8,
+ 0
+ ],
+ [
+ 1787619600000,
+ 65.06,
+ 0
+ ],
+ [
+ 1787623200000,
+ 72.35,
+ 0
+ ],
+ [
+ 1787626800000,
+ 77.23,
+ 0
+ ],
+ [
+ 1787630400000,
+ 74.29,
+ 0
+ ],
+ [
+ 1787634000000,
+ 70.55,
+ 0
+ ],
+ [
+ 1787637600000,
+ 72.1,
+ 0
+ ],
+ [
+ 1787641200000,
+ 81.85,
+ 0
+ ],
+ [
+ 1787644800000,
+ 90.29,
+ 0
+ ],
+ [
+ 1787648400000,
+ 94.63,
+ 0
+ ],
+ [
+ 1787652000000,
+ 97.69,
+ 0
+ ],
+ [
+ 1787655600000,
+ 99.87,
+ 0
+ ],
+ [
+ 1787659200000,
+ 100.05,
+ 0
+ ],
+ [
+ 1787662800000,
+ 99.86,
+ 0
+ ],
+ [
+ 1787666400000,
+ 87.3,
+ 0
+ ],
+ [
+ 1787670000000,
+ 61.08,
+ 0
+ ],
+ [
+ 1787673600000,
+ 45.05,
+ 0
+ ],
+ [
+ 1787677200000,
+ 39.46,
+ 0
+ ],
+ [
+ 1787680800000,
+ 47.7,
+ 0
+ ],
+ [
+ 1787684400000,
+ 46.92,
+ 0
+ ],
+ [
+ 1787688000000,
+ 46.89,
+ 0
+ ],
+ [
+ 1787691600000,
+ 46.22,
+ 0
+ ],
+ [
+ 1787695200000,
+ 37.13,
+ 0
+ ],
+ [
+ 1787698800000,
+ 32.57,
+ 0
+ ],
+ [
+ 1787702400000,
+ 32.83,
+ 0
+ ],
+ [
+ 1787706000000,
+ 38.49,
+ 0
+ ],
+ [
+ 1787709600000,
+ 49.59,
+ 0
+ ],
+ [
+ 1787713200000,
+ 55.78,
+ 0
+ ],
+ [
+ 1787716800000,
+ 64.24,
+ 0
+ ],
+ [
+ 1787720400000,
+ 69.24,
+ 0
+ ],
+ [
+ 1787724000000,
+ 77.44,
+ 0
+ ],
+ [
+ 1787727600000,
+ 78.82,
+ 0
+ ],
+ [
+ 1787731200000,
+ 52.66,
+ 0
+ ],
+ [
+ 1787734800000,
+ 49.15,
+ 0
+ ],
+ [
+ 1787738400000,
+ 59.29,
+ 0
+ ],
+ [
+ 1787742000000,
+ 66.36,
+ 0
+ ],
+ [
+ 1787745600000,
+ 82.58,
+ 0
+ ],
+ [
+ 1787749200000,
+ 86.67,
+ 0
+ ],
+ [
+ 1787752800000,
+ 65.1,
+ 0
+ ],
+ [
+ 1787756400000,
+ 56.91,
+ 0
+ ],
+ [
+ 1787760000000,
+ 56.78,
+ 0
+ ],
+ [
+ 1787763600000,
+ 55.59,
+ 0
+ ],
+ [
+ 1787767200000,
+ 57.6,
+ 0
+ ],
+ [
+ 1787770800000,
+ 63.0,
+ 0
+ ],
+ [
+ 1787774400000,
+ 55.41,
+ 0
+ ],
+ [
+ 1787778000000,
+ 57.27,
+ 0
+ ],
+ [
+ 1787781600000,
+ 52.93,
+ 0
+ ],
+ [
+ 1787785200000,
+ 46.61,
+ 0
+ ]
+ ]
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%25-Humidity.Inst.1Hour.0.Decodes-Raw.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%25-Humidity.Inst.1Hour.0.Decodes-Raw.json
new file mode 100644
index 000000000..381f0bc18
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.%25-Humidity.Inst.1Hour.0.Decodes-Raw.json
@@ -0,0 +1,10473 @@
+{
+ "begin": "2026-06-01T00:00:00+00:00",
+ "date-version-type": "UNVERSIONED",
+ "end": "2026-08-26T23:00:00+00:00",
+ "interval": "PT1H",
+ "interval-offset": 0,
+ "name": "EUFA.%-Humidity.Inst.1Hour.0.Decodes-Raw",
+ "office-id": "SWT",
+ "page": "MTc4MjY5MTIwMDAwMHx8MzM3fHwzMDAwMDA=",
+ "page-size": 300000,
+ "time-zone": "US/Central",
+ "total": 2088,
+ "units": "%",
+ "value-columns": [
+ {
+ "name": "date-time",
+ "ordinal": 1,
+ "datatype": "java.sql.Timestamp"
+ },
+ {
+ "name": "value",
+ "ordinal": 2,
+ "datatype": "java.lang.Double"
+ },
+ {
+ "name": "quality-code",
+ "ordinal": 3,
+ "datatype": "int"
+ }
+ ],
+ "values": [
+ [
+ 1780272000000,
+ 53.76,
+ 0
+ ],
+ [
+ 1780275600000,
+ 59.26,
+ 0
+ ],
+ [
+ 1780279200000,
+ 63.82,
+ 0
+ ],
+ [
+ 1780282800000,
+ 71.71,
+ 0
+ ],
+ [
+ 1780286400000,
+ 79.78,
+ 0
+ ],
+ [
+ 1780290000000,
+ 84.94,
+ 0
+ ],
+ [
+ 1780293600000,
+ 77.03,
+ 0
+ ],
+ [
+ 1780297200000,
+ 80.15,
+ 0
+ ],
+ [
+ 1780300800000,
+ 83.04,
+ 0
+ ],
+ [
+ 1780304400000,
+ 79.4,
+ 0
+ ],
+ [
+ 1780308000000,
+ 82.83,
+ 0
+ ],
+ [
+ 1780311600000,
+ 82.77,
+ 0
+ ],
+ [
+ 1780315200000,
+ 84.38,
+ 0
+ ],
+ [
+ 1780318800000,
+ 83.85,
+ 0
+ ],
+ [
+ 1780322400000,
+ 80.24,
+ 0
+ ],
+ [
+ 1780326000000,
+ 76.46,
+ 0
+ ],
+ [
+ 1780329600000,
+ 68.74,
+ 0
+ ],
+ [
+ 1780333200000,
+ 64.25,
+ 0
+ ],
+ [
+ 1780336800000,
+ 62.12,
+ 0
+ ],
+ [
+ 1780340400000,
+ 64.26,
+ 0
+ ],
+ [
+ 1780344000000,
+ 63.97,
+ 0
+ ],
+ [
+ 1780347600000,
+ 61.29,
+ 0
+ ],
+ [
+ 1780351200000,
+ 54.56,
+ 0
+ ],
+ [
+ 1780354800000,
+ 55.89,
+ 0
+ ],
+ [
+ 1780358400000,
+ 56.57,
+ 0
+ ],
+ [
+ 1780362000000,
+ 60.2,
+ 0
+ ],
+ [
+ 1780365600000,
+ 78.97,
+ 0
+ ],
+ [
+ 1780369200000,
+ 89.16,
+ 0
+ ],
+ [
+ 1780372800000,
+ 90.62,
+ 0
+ ],
+ [
+ 1780376400000,
+ 94.2,
+ 0
+ ],
+ [
+ 1780380000000,
+ 93.63,
+ 0
+ ],
+ [
+ 1780383600000,
+ 89.82,
+ 0
+ ],
+ [
+ 1780387200000,
+ 99.72,
+ 0
+ ],
+ [
+ 1780390800000,
+ 99.7,
+ 0
+ ],
+ [
+ 1780394400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780398000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780401600000,
+ 93.23,
+ 0
+ ],
+ [
+ 1780405200000,
+ 99.36,
+ 0
+ ],
+ [
+ 1780408800000,
+ 97.78,
+ 0
+ ],
+ [
+ 1780412400000,
+ 92.03,
+ 0
+ ],
+ [
+ 1780416000000,
+ 85.57,
+ 0
+ ],
+ [
+ 1780419600000,
+ 79.75,
+ 0
+ ],
+ [
+ 1780423200000,
+ 79.44,
+ 0
+ ],
+ [
+ 1780426800000,
+ 79.97,
+ 0
+ ],
+ [
+ 1780430400000,
+ 73.97,
+ 0
+ ],
+ [
+ 1780434000000,
+ 73.42,
+ 0
+ ],
+ [
+ 1780437600000,
+ 71.57,
+ 0
+ ],
+ [
+ 1780441200000,
+ 72.72,
+ 0
+ ],
+ [
+ 1780444800000,
+ 72.53,
+ 0
+ ],
+ [
+ 1780448400000,
+ 76.75,
+ 0
+ ],
+ [
+ 1780452000000,
+ 80.66,
+ 0
+ ],
+ [
+ 1780455600000,
+ 91.38,
+ 0
+ ],
+ [
+ 1780459200000,
+ 93.56,
+ 0
+ ],
+ [
+ 1780462800000,
+ 99.95,
+ 0
+ ],
+ [
+ 1780466400000,
+ 97.21,
+ 0
+ ],
+ [
+ 1780470000000,
+ 92.97,
+ 0
+ ],
+ [
+ 1780473600000,
+ 95.43,
+ 0
+ ],
+ [
+ 1780477200000,
+ 98.47,
+ 0
+ ],
+ [
+ 1780480800000,
+ 99.95,
+ 0
+ ],
+ [
+ 1780484400000,
+ 99.46,
+ 0
+ ],
+ [
+ 1780488000000,
+ 97.6,
+ 0
+ ],
+ [
+ 1780491600000,
+ 91.47,
+ 0
+ ],
+ [
+ 1780495200000,
+ 85.16,
+ 0
+ ],
+ [
+ 1780498800000,
+ 77.13,
+ 0
+ ],
+ [
+ 1780502400000,
+ 71.67,
+ 0
+ ],
+ [
+ 1780506000000,
+ 67.39,
+ 0
+ ],
+ [
+ 1780509600000,
+ 62.79,
+ 0
+ ],
+ [
+ 1780513200000,
+ 62.76,
+ 0
+ ],
+ [
+ 1780516800000,
+ 61.53,
+ 0
+ ],
+ [
+ 1780520400000,
+ 60.46,
+ 0
+ ],
+ [
+ 1780524000000,
+ 59.83,
+ 0
+ ],
+ [
+ 1780527600000,
+ 63.75,
+ 0
+ ],
+ [
+ 1780531200000,
+ 62.5,
+ 0
+ ],
+ [
+ 1780534800000,
+ 64.32,
+ 0
+ ],
+ [
+ 1780538400000,
+ 70.07,
+ 0
+ ],
+ [
+ 1780542000000,
+ 73.56,
+ 0
+ ],
+ [
+ 1780545600000,
+ 80.49,
+ 0
+ ],
+ [
+ 1780549200000,
+ 86.86,
+ 0
+ ],
+ [
+ 1780552800000,
+ 85.02,
+ 0
+ ],
+ [
+ 1780556400000,
+ 83.34,
+ 0
+ ],
+ [
+ 1780560000000,
+ 86.39,
+ 0
+ ],
+ [
+ 1780563600000,
+ 89.63,
+ 0
+ ],
+ [
+ 1780567200000,
+ 93.48,
+ 0
+ ],
+ [
+ 1780570800000,
+ 95.02,
+ 0
+ ],
+ [
+ 1780574400000,
+ 95.2,
+ 0
+ ],
+ [
+ 1780578000000,
+ 90.51,
+ 0
+ ],
+ [
+ 1780581600000,
+ 90.05,
+ 0
+ ],
+ [
+ 1780585200000,
+ 86.04,
+ 0
+ ],
+ [
+ 1780588800000,
+ 78.07,
+ 0
+ ],
+ [
+ 1780592400000,
+ 73.31,
+ 0
+ ],
+ [
+ 1780596000000,
+ 71.36,
+ 0
+ ],
+ [
+ 1780599600000,
+ 68.22,
+ 0
+ ],
+ [
+ 1780603200000,
+ 63.31,
+ 0
+ ],
+ [
+ 1780606800000,
+ 62.24,
+ 0
+ ],
+ [
+ 1780610400000,
+ 66.17,
+ 0
+ ],
+ [
+ 1780614000000,
+ 70.24,
+ 0
+ ],
+ [
+ 1780617600000,
+ 71.46,
+ 0
+ ],
+ [
+ 1780621200000,
+ 71.63,
+ 0
+ ],
+ [
+ 1780624800000,
+ 75.89,
+ 0
+ ],
+ [
+ 1780628400000,
+ 77.32,
+ 0
+ ],
+ [
+ 1780632000000,
+ 81.66,
+ 0
+ ],
+ [
+ 1780635600000,
+ 84.33,
+ 0
+ ],
+ [
+ 1780639200000,
+ 86.08,
+ 0
+ ],
+ [
+ 1780642800000,
+ 85.22,
+ 0
+ ],
+ [
+ 1780646400000,
+ 84.73,
+ 0
+ ],
+ [
+ 1780650000000,
+ 87.18,
+ 0
+ ],
+ [
+ 1780653600000,
+ 87.57,
+ 0
+ ],
+ [
+ 1780657200000,
+ 87.87,
+ 0
+ ],
+ [
+ 1780660800000,
+ 89.3,
+ 0
+ ],
+ [
+ 1780664400000,
+ 89.95,
+ 0
+ ],
+ [
+ 1780668000000,
+ 88.79,
+ 0
+ ],
+ [
+ 1780671600000,
+ 87.25,
+ 0
+ ],
+ [
+ 1780675200000,
+ 86.92,
+ 0
+ ],
+ [
+ 1780678800000,
+ 85.19,
+ 0
+ ],
+ [
+ 1780682400000,
+ 85.2,
+ 0
+ ],
+ [
+ 1780686000000,
+ 86.45,
+ 0
+ ],
+ [
+ 1780689600000,
+ 81.34,
+ 0
+ ],
+ [
+ 1780693200000,
+ 79.16,
+ 0
+ ],
+ [
+ 1780696800000,
+ 77.9,
+ 0
+ ],
+ [
+ 1780700400000,
+ 76.52,
+ 0
+ ],
+ [
+ 1780704000000,
+ 75.84,
+ 0
+ ],
+ [
+ 1780707600000,
+ 80.26,
+ 0
+ ],
+ [
+ 1780711200000,
+ 83.88,
+ 0
+ ],
+ [
+ 1780714800000,
+ 86.88,
+ 0
+ ],
+ [
+ 1780718400000,
+ 86.56,
+ 0
+ ],
+ [
+ 1780722000000,
+ 89.11,
+ 0
+ ],
+ [
+ 1780725600000,
+ 89.54,
+ 0
+ ],
+ [
+ 1780729200000,
+ 92.21,
+ 0
+ ],
+ [
+ 1780732800000,
+ 93.83,
+ 0
+ ],
+ [
+ 1780736400000,
+ 97.5,
+ 0
+ ],
+ [
+ 1780740000000,
+ 99.47,
+ 0
+ ],
+ [
+ 1780743600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780747200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780750800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780754400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780758000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780761600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780765200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780768800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780772400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780776000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780779600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780783200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780786800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780790400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780794000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780797600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780801200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1780804800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780808400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780812000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780815600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780819200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780822800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780826400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780830000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780833600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1780837200000,
+ 96.59,
+ 0
+ ],
+ [
+ 1780840800000,
+ 89.38,
+ 0
+ ],
+ [
+ 1780844400000,
+ 90.01,
+ 0
+ ],
+ [
+ 1780848000000,
+ 84.35,
+ 0
+ ],
+ [
+ 1780851600000,
+ 90.68,
+ 0
+ ],
+ [
+ 1780855200000,
+ 97.46,
+ 0
+ ],
+ [
+ 1780858800000,
+ 95.67,
+ 0
+ ],
+ [
+ 1780862400000,
+ 85.47,
+ 0
+ ],
+ [
+ 1780866000000,
+ 80.9,
+ 0
+ ],
+ [
+ 1780869600000,
+ 76.77,
+ 0
+ ],
+ [
+ 1780873200000,
+ 73.29,
+ 0
+ ],
+ [
+ 1780876800000,
+ 70.81,
+ 0
+ ],
+ [
+ 1780880400000,
+ 76.49,
+ 0
+ ],
+ [
+ 1780884000000,
+ 80.83,
+ 0
+ ],
+ [
+ 1780887600000,
+ 83.32,
+ 0
+ ],
+ [
+ 1780891200000,
+ 90.42,
+ 0
+ ],
+ [
+ 1780894800000,
+ 92.12,
+ 0
+ ],
+ [
+ 1780898400000,
+ 94.09,
+ 0
+ ],
+ [
+ 1780902000000,
+ 93.31,
+ 0
+ ],
+ [
+ 1780905600000,
+ 89.31,
+ 0
+ ],
+ [
+ 1780909200000,
+ 88.3,
+ 0
+ ],
+ [
+ 1780912800000,
+ 88.63,
+ 0
+ ],
+ [
+ 1780916400000,
+ 90.17,
+ 0
+ ],
+ [
+ 1780920000000,
+ 91.48,
+ 0
+ ],
+ [
+ 1780923600000,
+ 91.1,
+ 0
+ ],
+ [
+ 1780927200000,
+ 87.79,
+ 0
+ ],
+ [
+ 1780930800000,
+ 84.92,
+ 0
+ ],
+ [
+ 1780934400000,
+ 82.88,
+ 0
+ ],
+ [
+ 1780938000000,
+ 77.64,
+ 0
+ ],
+ [
+ 1780941600000,
+ 72.19,
+ 0
+ ],
+ [
+ 1780945200000,
+ 69.15,
+ 0
+ ],
+ [
+ 1780948800000,
+ 68.6,
+ 0
+ ],
+ [
+ 1780952400000,
+ 66.17,
+ 0
+ ],
+ [
+ 1780956000000,
+ 64.44,
+ 0
+ ],
+ [
+ 1780959600000,
+ 64.68,
+ 0
+ ],
+ [
+ 1780963200000,
+ 67.0,
+ 0
+ ],
+ [
+ 1780966800000,
+ 71.63,
+ 0
+ ],
+ [
+ 1780970400000,
+ 75.96,
+ 0
+ ],
+ [
+ 1780974000000,
+ 84.15,
+ 0
+ ],
+ [
+ 1780977600000,
+ 83.76,
+ 0
+ ],
+ [
+ 1780981200000,
+ 91.19,
+ 0
+ ],
+ [
+ 1780984800000,
+ 86.45,
+ 0
+ ],
+ [
+ 1780988400000,
+ 85.06,
+ 0
+ ],
+ [
+ 1780992000000,
+ 84.95,
+ 0
+ ],
+ [
+ 1780995600000,
+ 83.9,
+ 0
+ ],
+ [
+ 1780999200000,
+ 84.59,
+ 0
+ ],
+ [
+ 1781002800000,
+ 86.26,
+ 0
+ ],
+ [
+ 1781006400000,
+ 90.17,
+ 0
+ ],
+ [
+ 1781010000000,
+ 86.45,
+ 0
+ ],
+ [
+ 1781013600000,
+ 80.23,
+ 0
+ ],
+ [
+ 1781017200000,
+ 74.54,
+ 0
+ ],
+ [
+ 1781020800000,
+ 68.01,
+ 0
+ ],
+ [
+ 1781024400000,
+ 63.46,
+ 0
+ ],
+ [
+ 1781028000000,
+ 60.12,
+ 0
+ ],
+ [
+ 1781031600000,
+ 58.26,
+ 0
+ ],
+ [
+ 1781035200000,
+ 54.86,
+ 0
+ ],
+ [
+ 1781038800000,
+ 54.81,
+ 0
+ ],
+ [
+ 1781042400000,
+ 56.2,
+ 0
+ ],
+ [
+ 1781046000000,
+ 57.51,
+ 0
+ ],
+ [
+ 1781049600000,
+ 59.39,
+ 0
+ ],
+ [
+ 1781053200000,
+ 62.35,
+ 0
+ ],
+ [
+ 1781056800000,
+ 68.39,
+ 0
+ ],
+ [
+ 1781060400000,
+ 74.56,
+ 0
+ ],
+ [
+ 1781064000000,
+ 81.55,
+ 0
+ ],
+ [
+ 1781067600000,
+ 84.84,
+ 0
+ ],
+ [
+ 1781071200000,
+ 85.8,
+ 0
+ ],
+ [
+ 1781074800000,
+ 87.74,
+ 0
+ ],
+ [
+ 1781078400000,
+ 83.1,
+ 0
+ ],
+ [
+ 1781082000000,
+ 82.11,
+ 0
+ ],
+ [
+ 1781085600000,
+ 81.47,
+ 0
+ ],
+ [
+ 1781089200000,
+ 81.96,
+ 0
+ ],
+ [
+ 1781092800000,
+ 85.47,
+ 0
+ ],
+ [
+ 1781096400000,
+ 84.42,
+ 0
+ ],
+ [
+ 1781100000000,
+ 80.36,
+ 0
+ ],
+ [
+ 1781103600000,
+ 74.95,
+ 0
+ ],
+ [
+ 1781107200000,
+ 72.72,
+ 0
+ ],
+ [
+ 1781110800000,
+ 72.85,
+ 0
+ ],
+ [
+ 1781114400000,
+ 72.18,
+ 0
+ ],
+ [
+ 1781118000000,
+ 68.23,
+ 0
+ ],
+ [
+ 1781121600000,
+ 64.35,
+ 0
+ ],
+ [
+ 1781125200000,
+ 62.08,
+ 0
+ ],
+ [
+ 1781128800000,
+ 60.75,
+ 0
+ ],
+ [
+ 1781132400000,
+ 61.86,
+ 0
+ ],
+ [
+ 1781136000000,
+ 63.7,
+ 0
+ ],
+ [
+ 1781139600000,
+ 66.16,
+ 0
+ ],
+ [
+ 1781143200000,
+ 71.84,
+ 0
+ ],
+ [
+ 1781146800000,
+ 75.53,
+ 0
+ ],
+ [
+ 1781150400000,
+ 77.33,
+ 0
+ ],
+ [
+ 1781154000000,
+ 78.12,
+ 0
+ ],
+ [
+ 1781157600000,
+ 79.79,
+ 0
+ ],
+ [
+ 1781161200000,
+ 82.31,
+ 0
+ ],
+ [
+ 1781164800000,
+ 81.67,
+ 0
+ ],
+ [
+ 1781168400000,
+ 79.76,
+ 0
+ ],
+ [
+ 1781172000000,
+ 82.47,
+ 0
+ ],
+ [
+ 1781175600000,
+ 83.84,
+ 0
+ ],
+ [
+ 1781179200000,
+ 83.43,
+ 0
+ ],
+ [
+ 1781182800000,
+ 81.75,
+ 0
+ ],
+ [
+ 1781186400000,
+ 79.25,
+ 0
+ ],
+ [
+ 1781190000000,
+ 76.12,
+ 0
+ ],
+ [
+ 1781193600000,
+ 72.7,
+ 0
+ ],
+ [
+ 1781197200000,
+ 67.87,
+ 0
+ ],
+ [
+ 1781200800000,
+ 65.0,
+ 0
+ ],
+ [
+ 1781204400000,
+ 63.85,
+ 0
+ ],
+ [
+ 1781208000000,
+ 63.27,
+ 0
+ ],
+ [
+ 1781211600000,
+ 62.3,
+ 0
+ ],
+ [
+ 1781215200000,
+ 62.17,
+ 0
+ ],
+ [
+ 1781218800000,
+ 62.08,
+ 0
+ ],
+ [
+ 1781222400000,
+ 64.59,
+ 0
+ ],
+ [
+ 1781226000000,
+ 71.59,
+ 0
+ ],
+ [
+ 1781229600000,
+ 76.84,
+ 0
+ ],
+ [
+ 1781233200000,
+ 77.52,
+ 0
+ ],
+ [
+ 1781236800000,
+ 80.33,
+ 0
+ ],
+ [
+ 1781240400000,
+ 85.37,
+ 0
+ ],
+ [
+ 1781244000000,
+ 88.2,
+ 0
+ ],
+ [
+ 1781247600000,
+ 86.57,
+ 0
+ ],
+ [
+ 1781251200000,
+ 84.36,
+ 0
+ ],
+ [
+ 1781254800000,
+ 99.88,
+ 0
+ ],
+ [
+ 1781258400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781262000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781265600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781269200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781272800000,
+ 99.57,
+ 0
+ ],
+ [
+ 1781276400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781280000000,
+ 95.11,
+ 0
+ ],
+ [
+ 1781283600000,
+ 96.08,
+ 0
+ ],
+ [
+ 1781287200000,
+ 94.16,
+ 0
+ ],
+ [
+ 1781290800000,
+ 89.42,
+ 0
+ ],
+ [
+ 1781294400000,
+ 82.47,
+ 0
+ ],
+ [
+ 1781298000000,
+ 71.65,
+ 0
+ ],
+ [
+ 1781301600000,
+ 73.23,
+ 0
+ ],
+ [
+ 1781305200000,
+ 71.94,
+ 0
+ ],
+ [
+ 1781308800000,
+ 79.68,
+ 0
+ ],
+ [
+ 1781312400000,
+ 85.69,
+ 0
+ ],
+ [
+ 1781316000000,
+ 90.92,
+ 0
+ ],
+ [
+ 1781319600000,
+ 91.87,
+ 0
+ ],
+ [
+ 1781323200000,
+ 94.18,
+ 0
+ ],
+ [
+ 1781326800000,
+ 92.07,
+ 0
+ ],
+ [
+ 1781330400000,
+ 89.27,
+ 0
+ ],
+ [
+ 1781334000000,
+ 92.95,
+ 0
+ ],
+ [
+ 1781337600000,
+ 84.02,
+ 0
+ ],
+ [
+ 1781341200000,
+ 80.41,
+ 0
+ ],
+ [
+ 1781344800000,
+ 85.03,
+ 0
+ ],
+ [
+ 1781348400000,
+ 89.19,
+ 0
+ ],
+ [
+ 1781352000000,
+ 91.47,
+ 0
+ ],
+ [
+ 1781355600000,
+ 91.63,
+ 0
+ ],
+ [
+ 1781359200000,
+ 90.92,
+ 0
+ ],
+ [
+ 1781362800000,
+ 90.42,
+ 0
+ ],
+ [
+ 1781366400000,
+ 84.63,
+ 0
+ ],
+ [
+ 1781370000000,
+ 77.15,
+ 0
+ ],
+ [
+ 1781373600000,
+ 69.63,
+ 0
+ ],
+ [
+ 1781377200000,
+ 63.01,
+ 0
+ ],
+ [
+ 1781380800000,
+ 62.2,
+ 0
+ ],
+ [
+ 1781384400000,
+ 61.01,
+ 0
+ ],
+ [
+ 1781388000000,
+ 60.06,
+ 0
+ ],
+ [
+ 1781391600000,
+ 59.73,
+ 0
+ ],
+ [
+ 1781395200000,
+ 63.09,
+ 0
+ ],
+ [
+ 1781398800000,
+ 68.49,
+ 0
+ ],
+ [
+ 1781402400000,
+ 75.24,
+ 0
+ ],
+ [
+ 1781406000000,
+ 80.72,
+ 0
+ ],
+ [
+ 1781409600000,
+ 78.2,
+ 0
+ ],
+ [
+ 1781413200000,
+ 75.2,
+ 0
+ ],
+ [
+ 1781416800000,
+ 75.79,
+ 0
+ ],
+ [
+ 1781420400000,
+ 74.49,
+ 0
+ ],
+ [
+ 1781424000000,
+ 94.55,
+ 0
+ ],
+ [
+ 1781427600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781431200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781434800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781438400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781442000000,
+ 99.99,
+ 0
+ ],
+ [
+ 1781445600000,
+ 99.14,
+ 0
+ ],
+ [
+ 1781449200000,
+ 92.33,
+ 0
+ ],
+ [
+ 1781452800000,
+ 87.89,
+ 0
+ ],
+ [
+ 1781456400000,
+ 87.61,
+ 0
+ ],
+ [
+ 1781460000000,
+ 85.63,
+ 0
+ ],
+ [
+ 1781463600000,
+ 82.82,
+ 0
+ ],
+ [
+ 1781467200000,
+ 81.79,
+ 0
+ ],
+ [
+ 1781470800000,
+ 80.5,
+ 0
+ ],
+ [
+ 1781474400000,
+ 80.35,
+ 0
+ ],
+ [
+ 1781478000000,
+ 77.18,
+ 0
+ ],
+ [
+ 1781481600000,
+ 74.55,
+ 0
+ ],
+ [
+ 1781485200000,
+ 75.7,
+ 0
+ ],
+ [
+ 1781488800000,
+ 81.34,
+ 0
+ ],
+ [
+ 1781492400000,
+ 83.08,
+ 0
+ ],
+ [
+ 1781496000000,
+ 83.95,
+ 0
+ ],
+ [
+ 1781499600000,
+ 86.77,
+ 0
+ ],
+ [
+ 1781503200000,
+ 88.75,
+ 0
+ ],
+ [
+ 1781506800000,
+ 87.53,
+ 0
+ ],
+ [
+ 1781510400000,
+ 86.1,
+ 0
+ ],
+ [
+ 1781514000000,
+ 83.33,
+ 0
+ ],
+ [
+ 1781517600000,
+ 81.04,
+ 0
+ ],
+ [
+ 1781521200000,
+ 79.65,
+ 0
+ ],
+ [
+ 1781524800000,
+ 83.46,
+ 0
+ ],
+ [
+ 1781528400000,
+ 82.62,
+ 0
+ ],
+ [
+ 1781532000000,
+ 76.82,
+ 0
+ ],
+ [
+ 1781535600000,
+ 69.41,
+ 0
+ ],
+ [
+ 1781539200000,
+ 61.36,
+ 0
+ ],
+ [
+ 1781542800000,
+ 53.7,
+ 0
+ ],
+ [
+ 1781546400000,
+ 48.8,
+ 0
+ ],
+ [
+ 1781550000000,
+ 47.8,
+ 0
+ ],
+ [
+ 1781553600000,
+ 46.83,
+ 0
+ ],
+ [
+ 1781557200000,
+ 49.62,
+ 0
+ ],
+ [
+ 1781560800000,
+ 48.71,
+ 0
+ ],
+ [
+ 1781564400000,
+ 49.5,
+ 0
+ ],
+ [
+ 1781568000000,
+ 53.18,
+ 0
+ ],
+ [
+ 1781571600000,
+ 54.83,
+ 0
+ ],
+ [
+ 1781575200000,
+ 70.28,
+ 0
+ ],
+ [
+ 1781578800000,
+ 81.57,
+ 0
+ ],
+ [
+ 1781582400000,
+ 88.56,
+ 0
+ ],
+ [
+ 1781586000000,
+ 83.93,
+ 0
+ ],
+ [
+ 1781589600000,
+ 88.91,
+ 0
+ ],
+ [
+ 1781593200000,
+ 95.89,
+ 0
+ ],
+ [
+ 1781596800000,
+ 94.87,
+ 0
+ ],
+ [
+ 1781600400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781604000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781607600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781611200000,
+ 100.01,
+ 0
+ ],
+ [
+ 1781614800000,
+ 94.57,
+ 0
+ ],
+ [
+ 1781618400000,
+ 86.31,
+ 0
+ ],
+ [
+ 1781622000000,
+ 83.42,
+ 0
+ ],
+ [
+ 1781625600000,
+ 76.68,
+ 0
+ ],
+ [
+ 1781629200000,
+ 74.1,
+ 0
+ ],
+ [
+ 1781632800000,
+ 68.81,
+ 0
+ ],
+ [
+ 1781636400000,
+ 64.82,
+ 0
+ ],
+ [
+ 1781640000000,
+ 59.15,
+ 0
+ ],
+ [
+ 1781643600000,
+ 52.92,
+ 0
+ ],
+ [
+ 1781647200000,
+ 52.53,
+ 0
+ ],
+ [
+ 1781650800000,
+ 53.66,
+ 0
+ ],
+ [
+ 1781654400000,
+ 57.37,
+ 0
+ ],
+ [
+ 1781658000000,
+ 62.93,
+ 0
+ ],
+ [
+ 1781661600000,
+ 72.56,
+ 0
+ ],
+ [
+ 1781665200000,
+ 76.01,
+ 0
+ ],
+ [
+ 1781668800000,
+ 80.42,
+ 0
+ ],
+ [
+ 1781672400000,
+ 86.31,
+ 0
+ ],
+ [
+ 1781676000000,
+ 85.98,
+ 0
+ ],
+ [
+ 1781679600000,
+ 87.03,
+ 0
+ ],
+ [
+ 1781683200000,
+ 87.91,
+ 0
+ ],
+ [
+ 1781686800000,
+ 88.49,
+ 0
+ ],
+ [
+ 1781690400000,
+ 88.86,
+ 0
+ ],
+ [
+ 1781694000000,
+ 92.91,
+ 0
+ ],
+ [
+ 1781697600000,
+ 91.48,
+ 0
+ ],
+ [
+ 1781701200000,
+ 90.56,
+ 0
+ ],
+ [
+ 1781704800000,
+ 86.86,
+ 0
+ ],
+ [
+ 1781708400000,
+ 79.9,
+ 0
+ ],
+ [
+ 1781712000000,
+ 70.72,
+ 0
+ ],
+ [
+ 1781715600000,
+ 66.77,
+ 0
+ ],
+ [
+ 1781719200000,
+ 64.7,
+ 0
+ ],
+ [
+ 1781722800000,
+ 63.03,
+ 0
+ ],
+ [
+ 1781726400000,
+ 60.45,
+ 0
+ ],
+ [
+ 1781730000000,
+ 59.5,
+ 0
+ ],
+ [
+ 1781733600000,
+ 60.19,
+ 0
+ ],
+ [
+ 1781737200000,
+ 61.0,
+ 0
+ ],
+ [
+ 1781740800000,
+ 62.49,
+ 0
+ ],
+ [
+ 1781744400000,
+ 66.03,
+ 0
+ ],
+ [
+ 1781748000000,
+ 71.15,
+ 0
+ ],
+ [
+ 1781751600000,
+ 79.06,
+ 0
+ ],
+ [
+ 1781755200000,
+ 85.35,
+ 0
+ ],
+ [
+ 1781758800000,
+ 83.23,
+ 0
+ ],
+ [
+ 1781762400000,
+ 80.29,
+ 0
+ ],
+ [
+ 1781766000000,
+ 84.5,
+ 0
+ ],
+ [
+ 1781769600000,
+ 92.42,
+ 0
+ ],
+ [
+ 1781773200000,
+ 94.92,
+ 0
+ ],
+ [
+ 1781776800000,
+ 98.09,
+ 0
+ ],
+ [
+ 1781780400000,
+ 99.89,
+ 0
+ ],
+ [
+ 1781784000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781787600000,
+ 98.97,
+ 0
+ ],
+ [
+ 1781791200000,
+ 89.96,
+ 0
+ ],
+ [
+ 1781794800000,
+ 81.09,
+ 0
+ ],
+ [
+ 1781798400000,
+ 71.69,
+ 0
+ ],
+ [
+ 1781802000000,
+ 70.22,
+ 0
+ ],
+ [
+ 1781805600000,
+ 69.42,
+ 0
+ ],
+ [
+ 1781809200000,
+ 69.96,
+ 0
+ ],
+ [
+ 1781812800000,
+ 67.23,
+ 0
+ ],
+ [
+ 1781816400000,
+ 67.43,
+ 0
+ ],
+ [
+ 1781820000000,
+ 74.68,
+ 0
+ ],
+ [
+ 1781823600000,
+ 71.11,
+ 0
+ ],
+ [
+ 1781827200000,
+ 61.9,
+ 0
+ ],
+ [
+ 1781830800000,
+ 60.9,
+ 0
+ ],
+ [
+ 1781834400000,
+ 58.56,
+ 0
+ ],
+ [
+ 1781838000000,
+ 57.66,
+ 0
+ ],
+ [
+ 1781841600000,
+ 65.95,
+ 0
+ ],
+ [
+ 1781845200000,
+ 74.39,
+ 0
+ ],
+ [
+ 1781848800000,
+ 85.23,
+ 0
+ ],
+ [
+ 1781852400000,
+ 88.97,
+ 0
+ ],
+ [
+ 1781856000000,
+ 82.01,
+ 0
+ ],
+ [
+ 1781859600000,
+ 76.72,
+ 0
+ ],
+ [
+ 1781863200000,
+ 80.21,
+ 0
+ ],
+ [
+ 1781866800000,
+ 75.9,
+ 0
+ ],
+ [
+ 1781870400000,
+ 83.24,
+ 0
+ ],
+ [
+ 1781874000000,
+ 85.17,
+ 0
+ ],
+ [
+ 1781877600000,
+ 83.15,
+ 0
+ ],
+ [
+ 1781881200000,
+ 80.57,
+ 0
+ ],
+ [
+ 1781884800000,
+ 81.97,
+ 0
+ ],
+ [
+ 1781888400000,
+ 81.8,
+ 0
+ ],
+ [
+ 1781892000000,
+ 76.91,
+ 0
+ ],
+ [
+ 1781895600000,
+ 80.23,
+ 0
+ ],
+ [
+ 1781899200000,
+ 77.7,
+ 0
+ ],
+ [
+ 1781902800000,
+ 76.81,
+ 0
+ ],
+ [
+ 1781906400000,
+ 77.55,
+ 0
+ ],
+ [
+ 1781910000000,
+ 78.34,
+ 0
+ ],
+ [
+ 1781913600000,
+ 77.11,
+ 0
+ ],
+ [
+ 1781917200000,
+ 79.26,
+ 0
+ ],
+ [
+ 1781920800000,
+ 81.64,
+ 0
+ ],
+ [
+ 1781924400000,
+ 92.55,
+ 0
+ ],
+ [
+ 1781928000000,
+ 93.76,
+ 0
+ ],
+ [
+ 1781931600000,
+ 96.92,
+ 0
+ ],
+ [
+ 1781935200000,
+ 98.86,
+ 0
+ ],
+ [
+ 1781938800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781942400000,
+ 100.0,
+ 0
+ ],
+ [
+ 1781946000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1781949600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781953200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781956800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1781960400000,
+ 99.96,
+ 0
+ ],
+ [
+ 1781964000000,
+ 96.29,
+ 0
+ ],
+ [
+ 1781967600000,
+ 90.59,
+ 0
+ ],
+ [
+ 1781971200000,
+ 81.21,
+ 0
+ ],
+ [
+ 1781974800000,
+ 79.67,
+ 0
+ ],
+ [
+ 1781978400000,
+ 76.29,
+ 0
+ ],
+ [
+ 1781982000000,
+ 72.61,
+ 0
+ ],
+ [
+ 1781985600000,
+ 69.7,
+ 0
+ ],
+ [
+ 1781989200000,
+ 66.24,
+ 0
+ ],
+ [
+ 1781992800000,
+ 62.58,
+ 0
+ ],
+ [
+ 1781996400000,
+ 62.31,
+ 0
+ ],
+ [
+ 1782000000000,
+ 64.83,
+ 0
+ ],
+ [
+ 1782003600000,
+ 70.3,
+ 0
+ ],
+ [
+ 1782007200000,
+ 76.98,
+ 0
+ ],
+ [
+ 1782010800000,
+ 81.28,
+ 0
+ ],
+ [
+ 1782014400000,
+ 81.39,
+ 0
+ ],
+ [
+ 1782018000000,
+ 87.71,
+ 0
+ ],
+ [
+ 1782021600000,
+ 89.01,
+ 0
+ ],
+ [
+ 1782025200000,
+ 91.46,
+ 0
+ ],
+ [
+ 1782028800000,
+ 89.05,
+ 0
+ ],
+ [
+ 1782032400000,
+ 88.16,
+ 0
+ ],
+ [
+ 1782036000000,
+ 87.64,
+ 0
+ ],
+ [
+ 1782039600000,
+ 90.44,
+ 0
+ ],
+ [
+ 1782043200000,
+ 91.88,
+ 0
+ ],
+ [
+ 1782046800000,
+ 88.34,
+ 0
+ ],
+ [
+ 1782050400000,
+ 80.34,
+ 0
+ ],
+ [
+ 1782054000000,
+ 77.72,
+ 0
+ ],
+ [
+ 1782057600000,
+ 76.74,
+ 0
+ ],
+ [
+ 1782061200000,
+ 70.22,
+ 0
+ ],
+ [
+ 1782064800000,
+ 67.37,
+ 0
+ ],
+ [
+ 1782068400000,
+ 66.14,
+ 0
+ ],
+ [
+ 1782072000000,
+ 63.37,
+ 0
+ ],
+ [
+ 1782075600000,
+ 63.74,
+ 0
+ ],
+ [
+ 1782079200000,
+ 62.05,
+ 0
+ ],
+ [
+ 1782082800000,
+ 61.61,
+ 0
+ ],
+ [
+ 1782086400000,
+ 64.32,
+ 0
+ ],
+ [
+ 1782090000000,
+ 68.55,
+ 0
+ ],
+ [
+ 1782093600000,
+ 76.69,
+ 0
+ ],
+ [
+ 1782097200000,
+ 87.02,
+ 0
+ ],
+ [
+ 1782100800000,
+ 89.15,
+ 0
+ ],
+ [
+ 1782104400000,
+ 88.67,
+ 0
+ ],
+ [
+ 1782108000000,
+ 87.87,
+ 0
+ ],
+ [
+ 1782111600000,
+ 86.79,
+ 0
+ ],
+ [
+ 1782115200000,
+ 86.29,
+ 0
+ ],
+ [
+ 1782118800000,
+ 85.61,
+ 0
+ ],
+ [
+ 1782122400000,
+ 96.13,
+ 0
+ ],
+ [
+ 1782126000000,
+ 99.76,
+ 0
+ ],
+ [
+ 1782129600000,
+ 99.88,
+ 0
+ ],
+ [
+ 1782133200000,
+ 97.86,
+ 0
+ ],
+ [
+ 1782136800000,
+ 96.22,
+ 0
+ ],
+ [
+ 1782140400000,
+ 88.25,
+ 0
+ ],
+ [
+ 1782144000000,
+ 79.98,
+ 0
+ ],
+ [
+ 1782147600000,
+ 72.49,
+ 0
+ ],
+ [
+ 1782151200000,
+ 73.65,
+ 0
+ ],
+ [
+ 1782154800000,
+ 74.07,
+ 0
+ ],
+ [
+ 1782158400000,
+ 69.45,
+ 0
+ ],
+ [
+ 1782162000000,
+ 65.56,
+ 0
+ ],
+ [
+ 1782165600000,
+ 62.38,
+ 0
+ ],
+ [
+ 1782169200000,
+ 58.86,
+ 0
+ ],
+ [
+ 1782172800000,
+ 66.17,
+ 0
+ ],
+ [
+ 1782176400000,
+ 77.99,
+ 0
+ ],
+ [
+ 1782180000000,
+ 83.63,
+ 0
+ ],
+ [
+ 1782183600000,
+ 88.31,
+ 0
+ ],
+ [
+ 1782187200000,
+ 89.76,
+ 0
+ ],
+ [
+ 1782190800000,
+ 91.84,
+ 0
+ ],
+ [
+ 1782194400000,
+ 92.86,
+ 0
+ ],
+ [
+ 1782198000000,
+ 93.29,
+ 0
+ ],
+ [
+ 1782201600000,
+ 97.91,
+ 0
+ ],
+ [
+ 1782205200000,
+ 99.9,
+ 0
+ ],
+ [
+ 1782208800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782212400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782216000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782219600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782223200000,
+ 97.77,
+ 0
+ ],
+ [
+ 1782226800000,
+ 95.07,
+ 0
+ ],
+ [
+ 1782230400000,
+ 94.61,
+ 0
+ ],
+ [
+ 1782234000000,
+ 95.57,
+ 0
+ ],
+ [
+ 1782237600000,
+ 90.53,
+ 0
+ ],
+ [
+ 1782241200000,
+ 85.46,
+ 0
+ ],
+ [
+ 1782244800000,
+ 89.96,
+ 0
+ ],
+ [
+ 1782248400000,
+ 94.7,
+ 0
+ ],
+ [
+ 1782252000000,
+ 99.86,
+ 0
+ ],
+ [
+ 1782255600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782259200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782262800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1782266400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782270000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782273600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782277200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782280800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782284400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782288000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782291600000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782295200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782298800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782302400000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782306000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782309600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782313200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782316800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782320400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782324000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782327600000,
+ 99.66,
+ 0
+ ],
+ [
+ 1782331200000,
+ 92.7,
+ 0
+ ],
+ [
+ 1782334800000,
+ 89.65,
+ 0
+ ],
+ [
+ 1782338400000,
+ 90.35,
+ 0
+ ],
+ [
+ 1782342000000,
+ 92.25,
+ 0
+ ],
+ [
+ 1782345600000,
+ 90.48,
+ 0
+ ],
+ [
+ 1782349200000,
+ 92.39,
+ 0
+ ],
+ [
+ 1782352800000,
+ 94.59,
+ 0
+ ],
+ [
+ 1782356400000,
+ 98.61,
+ 0
+ ],
+ [
+ 1782360000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782363600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782367200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782370800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782374400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782378000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782381600000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782385200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782388800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1782392400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1782396000000,
+ 99.94,
+ 0
+ ],
+ [
+ 1782399600000,
+ 92.4,
+ 0
+ ],
+ [
+ 1782403200000,
+ 81.62,
+ 0
+ ],
+ [
+ 1782406800000,
+ 75.38,
+ 0
+ ],
+ [
+ 1782410400000,
+ 68.89,
+ 0
+ ],
+ [
+ 1782414000000,
+ 65.29,
+ 0
+ ],
+ [
+ 1782417600000,
+ 63.04,
+ 0
+ ],
+ [
+ 1782421200000,
+ 58.64,
+ 0
+ ],
+ [
+ 1782424800000,
+ 60.54,
+ 0
+ ],
+ [
+ 1782428400000,
+ 63.44,
+ 0
+ ],
+ [
+ 1782432000000,
+ 62.65,
+ 0
+ ],
+ [
+ 1782435600000,
+ 62.37,
+ 0
+ ],
+ [
+ 1782439200000,
+ 69.01,
+ 0
+ ],
+ [
+ 1782442800000,
+ 73.69,
+ 0
+ ],
+ [
+ 1782446400000,
+ 78.92,
+ 0
+ ],
+ [
+ 1782450000000,
+ 76.28,
+ 0
+ ],
+ [
+ 1782453600000,
+ 72.4,
+ 0
+ ],
+ [
+ 1782457200000,
+ 72.12,
+ 0
+ ],
+ [
+ 1782460800000,
+ 76.02,
+ 0
+ ],
+ [
+ 1782464400000,
+ 85.16,
+ 0
+ ],
+ [
+ 1782468000000,
+ 86.39,
+ 0
+ ],
+ [
+ 1782471600000,
+ 84.27,
+ 0
+ ],
+ [
+ 1782475200000,
+ 84.68,
+ 0
+ ],
+ [
+ 1782478800000,
+ 86.91,
+ 0
+ ],
+ [
+ 1782482400000,
+ 85.37,
+ 0
+ ],
+ [
+ 1782486000000,
+ 84.21,
+ 0
+ ],
+ [
+ 1782489600000,
+ 83.18,
+ 0
+ ],
+ [
+ 1782493200000,
+ 83.01,
+ 0
+ ],
+ [
+ 1782496800000,
+ 80.57,
+ 0
+ ],
+ [
+ 1782500400000,
+ 77.66,
+ 0
+ ],
+ [
+ 1782504000000,
+ 74.95,
+ 0
+ ],
+ [
+ 1782507600000,
+ 74.52,
+ 0
+ ],
+ [
+ 1782511200000,
+ 73.63,
+ 0
+ ],
+ [
+ 1782514800000,
+ 70.21,
+ 0
+ ],
+ [
+ 1782518400000,
+ 69.31,
+ 0
+ ],
+ [
+ 1782522000000,
+ 70.17,
+ 0
+ ],
+ [
+ 1782525600000,
+ 76.93,
+ 0
+ ],
+ [
+ 1782529200000,
+ 87.75,
+ 0
+ ],
+ [
+ 1782532800000,
+ 91.32,
+ 0
+ ],
+ [
+ 1782536400000,
+ 89.73,
+ 0
+ ],
+ [
+ 1782540000000,
+ 89.9,
+ 0
+ ],
+ [
+ 1782543600000,
+ 82.96,
+ 0
+ ],
+ [
+ 1782547200000,
+ 78.11,
+ 0
+ ],
+ [
+ 1782550800000,
+ 79.17,
+ 0
+ ],
+ [
+ 1782554400000,
+ 80.8,
+ 0
+ ],
+ [
+ 1782558000000,
+ 86.78,
+ 0
+ ],
+ [
+ 1782561600000,
+ 96.87,
+ 0
+ ],
+ [
+ 1782565200000,
+ 97.57,
+ 0
+ ],
+ [
+ 1782568800000,
+ 89.61,
+ 0
+ ],
+ [
+ 1782572400000,
+ 84.55,
+ 0
+ ],
+ [
+ 1782576000000,
+ 79.78,
+ 0
+ ],
+ [
+ 1782579600000,
+ 76.61,
+ 0
+ ],
+ [
+ 1782583200000,
+ 73.7,
+ 0
+ ],
+ [
+ 1782586800000,
+ 69.9,
+ 0
+ ],
+ [
+ 1782590400000,
+ 66.75,
+ 0
+ ],
+ [
+ 1782594000000,
+ 63.27,
+ 0
+ ],
+ [
+ 1782597600000,
+ 57.06,
+ 0
+ ],
+ [
+ 1782601200000,
+ 56.83,
+ 0
+ ],
+ [
+ 1782604800000,
+ 59.99,
+ 0
+ ],
+ [
+ 1782608400000,
+ 65.05,
+ 0
+ ],
+ [
+ 1782612000000,
+ 69.77,
+ 0
+ ],
+ [
+ 1782615600000,
+ 72.61,
+ 0
+ ],
+ [
+ 1782619200000,
+ 71.38,
+ 0
+ ],
+ [
+ 1782622800000,
+ 72.27,
+ 0
+ ],
+ [
+ 1782626400000,
+ 70.69,
+ 0
+ ],
+ [
+ 1782630000000,
+ 72.33,
+ 0
+ ],
+ [
+ 1782633600000,
+ 70.99,
+ 0
+ ],
+ [
+ 1782637200000,
+ 70.89,
+ 0
+ ],
+ [
+ 1782640800000,
+ 72.28,
+ 0
+ ],
+ [
+ 1782644400000,
+ 75.21,
+ 0
+ ],
+ [
+ 1782648000000,
+ 78.87,
+ 0
+ ],
+ [
+ 1782651600000,
+ 80.72,
+ 0
+ ],
+ [
+ 1782655200000,
+ 78.76,
+ 0
+ ],
+ [
+ 1782658800000,
+ 73.65,
+ 0
+ ],
+ [
+ 1782662400000,
+ 68.42,
+ 0
+ ],
+ [
+ 1782666000000,
+ 63.91,
+ 0
+ ],
+ [
+ 1782669600000,
+ 60.46,
+ 0
+ ],
+ [
+ 1782673200000,
+ 57.84,
+ 0
+ ],
+ [
+ 1782676800000,
+ 54.47,
+ 0
+ ],
+ [
+ 1782680400000,
+ 54.59,
+ 0
+ ],
+ [
+ 1782684000000,
+ 55.11,
+ 0
+ ],
+ [
+ 1782687600000,
+ 57.71,
+ 0
+ ],
+ [
+ 1782691200000,
+ 61.32,
+ 0
+ ],
+ [
+ 1782694800000,
+ 63.44,
+ 0
+ ],
+ [
+ 1782698400000,
+ 68.61,
+ 0
+ ],
+ [
+ 1782702000000,
+ 72.17,
+ 0
+ ],
+ [
+ 1782705600000,
+ 73.62,
+ 0
+ ],
+ [
+ 1782709200000,
+ 73.2,
+ 0
+ ],
+ [
+ 1782712800000,
+ 70.79,
+ 0
+ ],
+ [
+ 1782716400000,
+ 72.18,
+ 0
+ ],
+ [
+ 1782720000000,
+ 74.65,
+ 0
+ ],
+ [
+ 1782723600000,
+ 76.43,
+ 0
+ ],
+ [
+ 1782727200000,
+ 76.78,
+ 0
+ ],
+ [
+ 1782730800000,
+ 76.18,
+ 0
+ ],
+ [
+ 1782734400000,
+ 75.38,
+ 0
+ ],
+ [
+ 1782738000000,
+ 76.06,
+ 0
+ ],
+ [
+ 1782741600000,
+ 75.07,
+ 0
+ ],
+ [
+ 1782745200000,
+ 71.45,
+ 0
+ ],
+ [
+ 1782748800000,
+ 65.38,
+ 0
+ ],
+ [
+ 1782752400000,
+ 60.27,
+ 0
+ ],
+ [
+ 1782756000000,
+ 58.28,
+ 0
+ ],
+ [
+ 1782759600000,
+ 55.72,
+ 0
+ ],
+ [
+ 1782763200000,
+ 53.99,
+ 0
+ ],
+ [
+ 1782766800000,
+ 54.04,
+ 0
+ ],
+ [
+ 1782770400000,
+ 54.83,
+ 0
+ ],
+ [
+ 1782774000000,
+ 54.97,
+ 0
+ ],
+ [
+ 1782777600000,
+ 57.62,
+ 0
+ ],
+ [
+ 1782781200000,
+ 61.58,
+ 0
+ ],
+ [
+ 1782784800000,
+ 66.9,
+ 0
+ ],
+ [
+ 1782788400000,
+ 69.81,
+ 0
+ ],
+ [
+ 1782792000000,
+ 72.34,
+ 0
+ ],
+ [
+ 1782795600000,
+ 73.84,
+ 0
+ ],
+ [
+ 1782799200000,
+ 73.41,
+ 0
+ ],
+ [
+ 1782802800000,
+ 71.87,
+ 0
+ ],
+ [
+ 1782806400000,
+ 74.09,
+ 0
+ ],
+ [
+ 1782810000000,
+ 75.69,
+ 0
+ ],
+ [
+ 1782813600000,
+ 77.37,
+ 0
+ ],
+ [
+ 1782817200000,
+ 78.72,
+ 0
+ ],
+ [
+ 1782820800000,
+ 81.46,
+ 0
+ ],
+ [
+ 1782824400000,
+ 82.08,
+ 0
+ ],
+ [
+ 1782828000000,
+ 78.96,
+ 0
+ ],
+ [
+ 1782831600000,
+ 70.85,
+ 0
+ ],
+ [
+ 1782835200000,
+ 62.33,
+ 0
+ ],
+ [
+ 1782838800000,
+ 56.02,
+ 0
+ ],
+ [
+ 1782842400000,
+ 51.35,
+ 0
+ ],
+ [
+ 1782846000000,
+ 50.95,
+ 0
+ ],
+ [
+ 1782849600000,
+ 47.42,
+ 0
+ ],
+ [
+ 1782853200000,
+ 47.61,
+ 0
+ ],
+ [
+ 1782856800000,
+ 47.6,
+ 0
+ ],
+ [
+ 1782860400000,
+ 51.58,
+ 0
+ ],
+ [
+ 1782864000000,
+ 55.84,
+ 0
+ ],
+ [
+ 1782867600000,
+ 60.8,
+ 0
+ ],
+ [
+ 1782871200000,
+ 68.85,
+ 0
+ ],
+ [
+ 1782874800000,
+ 69.67,
+ 0
+ ],
+ [
+ 1782878400000,
+ 72.84,
+ 0
+ ],
+ [
+ 1782882000000,
+ 75.97,
+ 0
+ ],
+ [
+ 1782885600000,
+ 79.03,
+ 0
+ ],
+ [
+ 1782889200000,
+ 89.94,
+ 0
+ ],
+ [
+ 1782892800000,
+ 86.25,
+ 0
+ ],
+ [
+ 1782896400000,
+ 78.71,
+ 0
+ ],
+ [
+ 1782900000000,
+ 80.29,
+ 0
+ ],
+ [
+ 1782903600000,
+ 84.78,
+ 0
+ ],
+ [
+ 1782907200000,
+ 84.51,
+ 0
+ ],
+ [
+ 1782910800000,
+ 82.6,
+ 0
+ ],
+ [
+ 1782914400000,
+ 78.47,
+ 0
+ ],
+ [
+ 1782918000000,
+ 73.16,
+ 0
+ ],
+ [
+ 1782921600000,
+ 68.13,
+ 0
+ ],
+ [
+ 1782925200000,
+ 60.52,
+ 0
+ ],
+ [
+ 1782928800000,
+ 55.82,
+ 0
+ ],
+ [
+ 1782932400000,
+ 55.2,
+ 0
+ ],
+ [
+ 1782936000000,
+ 53.83,
+ 0
+ ],
+ [
+ 1782939600000,
+ 52.84,
+ 0
+ ],
+ [
+ 1782943200000,
+ 49.13,
+ 0
+ ],
+ [
+ 1782946800000,
+ 51.49,
+ 0
+ ],
+ [
+ 1782950400000,
+ 54.17,
+ 0
+ ],
+ [
+ 1782954000000,
+ 59.23,
+ 0
+ ],
+ [
+ 1782957600000,
+ 69.94,
+ 0
+ ],
+ [
+ 1782961200000,
+ 77.94,
+ 0
+ ],
+ [
+ 1782964800000,
+ 73.24,
+ 0
+ ],
+ [
+ 1782968400000,
+ 87.04,
+ 0
+ ],
+ [
+ 1782972000000,
+ 83.67,
+ 0
+ ],
+ [
+ 1782975600000,
+ 82.92,
+ 0
+ ],
+ [
+ 1782979200000,
+ 89.3,
+ 0
+ ],
+ [
+ 1782982800000,
+ 94.05,
+ 0
+ ],
+ [
+ 1782986400000,
+ 77.97,
+ 0
+ ],
+ [
+ 1782990000000,
+ 80.7,
+ 0
+ ],
+ [
+ 1782993600000,
+ 89.61,
+ 0
+ ],
+ [
+ 1782997200000,
+ 89.87,
+ 0
+ ],
+ [
+ 1783000800000,
+ 86.99,
+ 0
+ ],
+ [
+ 1783004400000,
+ 78.25,
+ 0
+ ],
+ [
+ 1783008000000,
+ 77.78,
+ 0
+ ],
+ [
+ 1783011600000,
+ 69.65,
+ 0
+ ],
+ [
+ 1783015200000,
+ 64.63,
+ 0
+ ],
+ [
+ 1783018800000,
+ 58.99,
+ 0
+ ],
+ [
+ 1783022400000,
+ 56.64,
+ 0
+ ],
+ [
+ 1783026000000,
+ 56.63,
+ 0
+ ],
+ [
+ 1783029600000,
+ 57.46,
+ 0
+ ],
+ [
+ 1783033200000,
+ 60.17,
+ 0
+ ],
+ [
+ 1783036800000,
+ 82.41,
+ 0
+ ],
+ [
+ 1783040400000,
+ 92.26,
+ 0
+ ],
+ [
+ 1783044000000,
+ 96.98,
+ 0
+ ],
+ [
+ 1783047600000,
+ 93.18,
+ 0
+ ],
+ [
+ 1783051200000,
+ 91.47,
+ 0
+ ],
+ [
+ 1783054800000,
+ 93.33,
+ 0
+ ],
+ [
+ 1783058400000,
+ 95.51,
+ 0
+ ],
+ [
+ 1783062000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783065600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783069200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783072800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783076400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783080000000,
+ 97.61,
+ 0
+ ],
+ [
+ 1783083600000,
+ 96.2,
+ 0
+ ],
+ [
+ 1783087200000,
+ 87.79,
+ 0
+ ],
+ [
+ 1783090800000,
+ 79.0,
+ 0
+ ],
+ [
+ 1783094400000,
+ 71.2,
+ 0
+ ],
+ [
+ 1783098000000,
+ 66.42,
+ 0
+ ],
+ [
+ 1783101600000,
+ 63.18,
+ 0
+ ],
+ [
+ 1783105200000,
+ 61.34,
+ 0
+ ],
+ [
+ 1783108800000,
+ 59.83,
+ 0
+ ],
+ [
+ 1783112400000,
+ 57.69,
+ 0
+ ],
+ [
+ 1783116000000,
+ 61.22,
+ 0
+ ],
+ [
+ 1783119600000,
+ 61.5,
+ 0
+ ],
+ [
+ 1783123200000,
+ 64.21,
+ 0
+ ],
+ [
+ 1783126800000,
+ 66.52,
+ 0
+ ],
+ [
+ 1783130400000,
+ 71.98,
+ 0
+ ],
+ [
+ 1783134000000,
+ 77.21,
+ 0
+ ],
+ [
+ 1783137600000,
+ 81.01,
+ 0
+ ],
+ [
+ 1783141200000,
+ 81.69,
+ 0
+ ],
+ [
+ 1783144800000,
+ 84.79,
+ 0
+ ],
+ [
+ 1783148400000,
+ 92.6,
+ 0
+ ],
+ [
+ 1783152000000,
+ 96.86,
+ 0
+ ],
+ [
+ 1783155600000,
+ 98.38,
+ 0
+ ],
+ [
+ 1783159200000,
+ 100.01,
+ 0
+ ],
+ [
+ 1783162800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783166400000,
+ 99.54,
+ 0
+ ],
+ [
+ 1783170000000,
+ 93.4,
+ 0
+ ],
+ [
+ 1783173600000,
+ 78.96,
+ 0
+ ],
+ [
+ 1783177200000,
+ 70.97,
+ 0
+ ],
+ [
+ 1783180800000,
+ 69.75,
+ 0
+ ],
+ [
+ 1783184400000,
+ 64.44,
+ 0
+ ],
+ [
+ 1783188000000,
+ 58.99,
+ 0
+ ],
+ [
+ 1783191600000,
+ 55.12,
+ 0
+ ],
+ [
+ 1783195200000,
+ 52.73,
+ 0
+ ],
+ [
+ 1783198800000,
+ 48.04,
+ 0
+ ],
+ [
+ 1783202400000,
+ 46.92,
+ 0
+ ],
+ [
+ 1783206000000,
+ 50.09,
+ 0
+ ],
+ [
+ 1783209600000,
+ 58.89,
+ 0
+ ],
+ [
+ 1783213200000,
+ 65.02,
+ 0
+ ],
+ [
+ 1783216800000,
+ 70.46,
+ 0
+ ],
+ [
+ 1783220400000,
+ 77.5,
+ 0
+ ],
+ [
+ 1783224000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783227600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783231200000,
+ 99.24,
+ 0
+ ],
+ [
+ 1783234800000,
+ 93.53,
+ 0
+ ],
+ [
+ 1783238400000,
+ 92.93,
+ 0
+ ],
+ [
+ 1783242000000,
+ 96.73,
+ 0
+ ],
+ [
+ 1783245600000,
+ 97.07,
+ 0
+ ],
+ [
+ 1783249200000,
+ 99.86,
+ 0
+ ],
+ [
+ 1783252800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783256400000,
+ 97.91,
+ 0
+ ],
+ [
+ 1783260000000,
+ 97.26,
+ 0
+ ],
+ [
+ 1783263600000,
+ 88.55,
+ 0
+ ],
+ [
+ 1783267200000,
+ 80.02,
+ 0
+ ],
+ [
+ 1783270800000,
+ 69.97,
+ 0
+ ],
+ [
+ 1783274400000,
+ 69.45,
+ 0
+ ],
+ [
+ 1783278000000,
+ 63.05,
+ 0
+ ],
+ [
+ 1783281600000,
+ 59.39,
+ 0
+ ],
+ [
+ 1783285200000,
+ 54.3,
+ 0
+ ],
+ [
+ 1783288800000,
+ 55.83,
+ 0
+ ],
+ [
+ 1783292400000,
+ 61.38,
+ 0
+ ],
+ [
+ 1783296000000,
+ 62.63,
+ 0
+ ],
+ [
+ 1783299600000,
+ 69.59,
+ 0
+ ],
+ [
+ 1783303200000,
+ 84.33,
+ 0
+ ],
+ [
+ 1783306800000,
+ 91.3,
+ 0
+ ],
+ [
+ 1783310400000,
+ 97.63,
+ 0
+ ],
+ [
+ 1783314000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783317600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783321200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783324800000,
+ 99.49,
+ 0
+ ],
+ [
+ 1783328400000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783332000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783335600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783339200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783342800000,
+ 99.03,
+ 0
+ ],
+ [
+ 1783346400000,
+ 94.35,
+ 0
+ ],
+ [
+ 1783350000000,
+ 88.34,
+ 0
+ ],
+ [
+ 1783353600000,
+ 72.95,
+ 0
+ ],
+ [
+ 1783357200000,
+ 66.83,
+ 0
+ ],
+ [
+ 1783360800000,
+ 63.22,
+ 0
+ ],
+ [
+ 1783364400000,
+ 57.84,
+ 0
+ ],
+ [
+ 1783368000000,
+ 52.96,
+ 0
+ ],
+ [
+ 1783371600000,
+ 52.94,
+ 0
+ ],
+ [
+ 1783375200000,
+ 49.21,
+ 0
+ ],
+ [
+ 1783378800000,
+ 51.12,
+ 0
+ ],
+ [
+ 1783382400000,
+ 53.17,
+ 0
+ ],
+ [
+ 1783386000000,
+ 53.98,
+ 0
+ ],
+ [
+ 1783389600000,
+ 68.36,
+ 0
+ ],
+ [
+ 1783393200000,
+ 76.68,
+ 0
+ ],
+ [
+ 1783396800000,
+ 84.09,
+ 0
+ ],
+ [
+ 1783400400000,
+ 93.44,
+ 0
+ ],
+ [
+ 1783404000000,
+ 98.29,
+ 0
+ ],
+ [
+ 1783407600000,
+ 95.41,
+ 0
+ ],
+ [
+ 1783411200000,
+ 93.17,
+ 0
+ ],
+ [
+ 1783414800000,
+ 93.46,
+ 0
+ ],
+ [
+ 1783418400000,
+ 95.95,
+ 0
+ ],
+ [
+ 1783422000000,
+ 99.21,
+ 0
+ ],
+ [
+ 1783425600000,
+ 99.71,
+ 0
+ ],
+ [
+ 1783429200000,
+ 96.01,
+ 0
+ ],
+ [
+ 1783432800000,
+ 87.73,
+ 0
+ ],
+ [
+ 1783436400000,
+ 79.4,
+ 0
+ ],
+ [
+ 1783440000000,
+ 76.11,
+ 0
+ ],
+ [
+ 1783443600000,
+ 74.28,
+ 0
+ ],
+ [
+ 1783447200000,
+ 71.82,
+ 0
+ ],
+ [
+ 1783450800000,
+ 68.2,
+ 0
+ ],
+ [
+ 1783454400000,
+ 54.45,
+ 0
+ ],
+ [
+ 1783458000000,
+ 52.61,
+ 0
+ ],
+ [
+ 1783461600000,
+ 49.17,
+ 0
+ ],
+ [
+ 1783465200000,
+ 48.52,
+ 0
+ ],
+ [
+ 1783468800000,
+ 49.66,
+ 0
+ ],
+ [
+ 1783472400000,
+ 54.92,
+ 0
+ ],
+ [
+ 1783476000000,
+ 68.24,
+ 0
+ ],
+ [
+ 1783479600000,
+ 86.41,
+ 0
+ ],
+ [
+ 1783483200000,
+ 89.84,
+ 0
+ ],
+ [
+ 1783486800000,
+ 95.08,
+ 0
+ ],
+ [
+ 1783490400000,
+ 98.94,
+ 0
+ ],
+ [
+ 1783494000000,
+ 97.91,
+ 0
+ ],
+ [
+ 1783497600000,
+ 93.38,
+ 0
+ ],
+ [
+ 1783501200000,
+ 94.68,
+ 0
+ ],
+ [
+ 1783504800000,
+ 98.76,
+ 0
+ ],
+ [
+ 1783508400000,
+ 99.99,
+ 0
+ ],
+ [
+ 1783512000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783515600000,
+ 99.45,
+ 0
+ ],
+ [
+ 1783519200000,
+ 96.33,
+ 0
+ ],
+ [
+ 1783522800000,
+ 85.8,
+ 0
+ ],
+ [
+ 1783526400000,
+ 77.48,
+ 0
+ ],
+ [
+ 1783530000000,
+ 67.38,
+ 0
+ ],
+ [
+ 1783533600000,
+ 63.45,
+ 0
+ ],
+ [
+ 1783537200000,
+ 59.45,
+ 0
+ ],
+ [
+ 1783540800000,
+ 58.67,
+ 0
+ ],
+ [
+ 1783544400000,
+ 59.69,
+ 0
+ ],
+ [
+ 1783548000000,
+ 55.25,
+ 0
+ ],
+ [
+ 1783551600000,
+ 55.02,
+ 0
+ ],
+ [
+ 1783555200000,
+ 58.15,
+ 0
+ ],
+ [
+ 1783558800000,
+ 63.57,
+ 0
+ ],
+ [
+ 1783562400000,
+ 70.36,
+ 0
+ ],
+ [
+ 1783566000000,
+ 74.73,
+ 0
+ ],
+ [
+ 1783569600000,
+ 77.34,
+ 0
+ ],
+ [
+ 1783573200000,
+ 79.37,
+ 0
+ ],
+ [
+ 1783576800000,
+ 77.21,
+ 0
+ ],
+ [
+ 1783580400000,
+ 77.44,
+ 0
+ ],
+ [
+ 1783584000000,
+ 76.01,
+ 0
+ ],
+ [
+ 1783587600000,
+ 71.92,
+ 0
+ ],
+ [
+ 1783591200000,
+ 70.27,
+ 0
+ ],
+ [
+ 1783594800000,
+ 68.35,
+ 0
+ ],
+ [
+ 1783598400000,
+ 69.78,
+ 0
+ ],
+ [
+ 1783602000000,
+ 70.89,
+ 0
+ ],
+ [
+ 1783605600000,
+ 68.81,
+ 0
+ ],
+ [
+ 1783609200000,
+ 66.38,
+ 0
+ ],
+ [
+ 1783612800000,
+ 63.84,
+ 0
+ ],
+ [
+ 1783616400000,
+ 61.0,
+ 0
+ ],
+ [
+ 1783620000000,
+ 59.42,
+ 0
+ ],
+ [
+ 1783623600000,
+ 55.41,
+ 0
+ ],
+ [
+ 1783627200000,
+ 54.16,
+ 0
+ ],
+ [
+ 1783630800000,
+ 52.78,
+ 0
+ ],
+ [
+ 1783634400000,
+ 51.18,
+ 0
+ ],
+ [
+ 1783638000000,
+ 50.74,
+ 0
+ ],
+ [
+ 1783641600000,
+ 56.3,
+ 0
+ ],
+ [
+ 1783645200000,
+ 62.31,
+ 0
+ ],
+ [
+ 1783648800000,
+ 63.09,
+ 0
+ ],
+ [
+ 1783652400000,
+ 63.11,
+ 0
+ ],
+ [
+ 1783656000000,
+ 62.83,
+ 0
+ ],
+ [
+ 1783659600000,
+ 61.17,
+ 0
+ ],
+ [
+ 1783663200000,
+ 61.88,
+ 0
+ ],
+ [
+ 1783666800000,
+ 58.8,
+ 0
+ ],
+ [
+ 1783670400000,
+ 57.17,
+ 0
+ ],
+ [
+ 1783674000000,
+ 58.64,
+ 0
+ ],
+ [
+ 1783677600000,
+ 60.12,
+ 0
+ ],
+ [
+ 1783681200000,
+ 62.68,
+ 0
+ ],
+ [
+ 1783684800000,
+ 63.14,
+ 0
+ ],
+ [
+ 1783688400000,
+ 63.21,
+ 0
+ ],
+ [
+ 1783692000000,
+ 63.79,
+ 0
+ ],
+ [
+ 1783695600000,
+ 61.61,
+ 0
+ ],
+ [
+ 1783699200000,
+ 60.35,
+ 0
+ ],
+ [
+ 1783702800000,
+ 56.33,
+ 0
+ ],
+ [
+ 1783706400000,
+ 52.95,
+ 0
+ ],
+ [
+ 1783710000000,
+ 50.44,
+ 0
+ ],
+ [
+ 1783713600000,
+ 48.44,
+ 0
+ ],
+ [
+ 1783717200000,
+ 47.71,
+ 0
+ ],
+ [
+ 1783720800000,
+ 45.98,
+ 0
+ ],
+ [
+ 1783724400000,
+ 46.77,
+ 0
+ ],
+ [
+ 1783728000000,
+ 48.36,
+ 0
+ ],
+ [
+ 1783731600000,
+ 55.02,
+ 0
+ ],
+ [
+ 1783735200000,
+ 60.32,
+ 0
+ ],
+ [
+ 1783738800000,
+ 64.26,
+ 0
+ ],
+ [
+ 1783742400000,
+ 67.07,
+ 0
+ ],
+ [
+ 1783746000000,
+ 67.18,
+ 0
+ ],
+ [
+ 1783749600000,
+ 65.59,
+ 0
+ ],
+ [
+ 1783753200000,
+ 66.64,
+ 0
+ ],
+ [
+ 1783756800000,
+ 67.8,
+ 0
+ ],
+ [
+ 1783760400000,
+ 68.58,
+ 0
+ ],
+ [
+ 1783764000000,
+ 71.1,
+ 0
+ ],
+ [
+ 1783767600000,
+ 73.06,
+ 0
+ ],
+ [
+ 1783771200000,
+ 73.4,
+ 0
+ ],
+ [
+ 1783774800000,
+ 73.61,
+ 0
+ ],
+ [
+ 1783778400000,
+ 72.41,
+ 0
+ ],
+ [
+ 1783782000000,
+ 68.64,
+ 0
+ ],
+ [
+ 1783785600000,
+ 65.84,
+ 0
+ ],
+ [
+ 1783789200000,
+ 63.07,
+ 0
+ ],
+ [
+ 1783792800000,
+ 60.59,
+ 0
+ ],
+ [
+ 1783796400000,
+ 56.28,
+ 0
+ ],
+ [
+ 1783800000000,
+ 52.32,
+ 0
+ ],
+ [
+ 1783803600000,
+ 50.52,
+ 0
+ ],
+ [
+ 1783807200000,
+ 50.62,
+ 0
+ ],
+ [
+ 1783810800000,
+ 48.39,
+ 0
+ ],
+ [
+ 1783814400000,
+ 50.63,
+ 0
+ ],
+ [
+ 1783818000000,
+ 54.45,
+ 0
+ ],
+ [
+ 1783821600000,
+ 61.82,
+ 0
+ ],
+ [
+ 1783825200000,
+ 76.25,
+ 0
+ ],
+ [
+ 1783828800000,
+ 76.49,
+ 0
+ ],
+ [
+ 1783832400000,
+ 90.3,
+ 0
+ ],
+ [
+ 1783836000000,
+ 90.73,
+ 0
+ ],
+ [
+ 1783839600000,
+ 90.7,
+ 0
+ ],
+ [
+ 1783843200000,
+ 93.77,
+ 0
+ ],
+ [
+ 1783846800000,
+ 99.46,
+ 0
+ ],
+ [
+ 1783850400000,
+ 96.76,
+ 0
+ ],
+ [
+ 1783854000000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783857600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783861200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783864800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783868400000,
+ 97.15,
+ 0
+ ],
+ [
+ 1783872000000,
+ 99.84,
+ 0
+ ],
+ [
+ 1783875600000,
+ 99.98,
+ 0
+ ],
+ [
+ 1783879200000,
+ 99.25,
+ 0
+ ],
+ [
+ 1783882800000,
+ 96.01,
+ 0
+ ],
+ [
+ 1783886400000,
+ 94.22,
+ 0
+ ],
+ [
+ 1783890000000,
+ 90.94,
+ 0
+ ],
+ [
+ 1783893600000,
+ 83.57,
+ 0
+ ],
+ [
+ 1783897200000,
+ 78.04,
+ 0
+ ],
+ [
+ 1783900800000,
+ 78.01,
+ 0
+ ],
+ [
+ 1783904400000,
+ 79.36,
+ 0
+ ],
+ [
+ 1783908000000,
+ 84.77,
+ 0
+ ],
+ [
+ 1783911600000,
+ 96.98,
+ 0
+ ],
+ [
+ 1783915200000,
+ 99.82,
+ 0
+ ],
+ [
+ 1783918800000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783922400000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783926000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783929600000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783933200000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783936800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783940400000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783944000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1783947600000,
+ 100.03,
+ 0
+ ],
+ [
+ 1783951200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1783954800000,
+ 99.21,
+ 0
+ ],
+ [
+ 1783958400000,
+ 89.13,
+ 0
+ ],
+ [
+ 1783962000000,
+ 77.6,
+ 0
+ ],
+ [
+ 1783965600000,
+ 68.39,
+ 0
+ ],
+ [
+ 1783969200000,
+ 61.69,
+ 0
+ ],
+ [
+ 1783972800000,
+ 55.55,
+ 0
+ ],
+ [
+ 1783976400000,
+ 48.69,
+ 0
+ ],
+ [
+ 1783980000000,
+ 50.33,
+ 0
+ ],
+ [
+ 1783983600000,
+ 54.22,
+ 0
+ ],
+ [
+ 1783987200000,
+ 55.14,
+ 0
+ ],
+ [
+ 1783990800000,
+ 59.21,
+ 0
+ ],
+ [
+ 1783994400000,
+ 62.68,
+ 0
+ ],
+ [
+ 1783998000000,
+ 77.16,
+ 0
+ ],
+ [
+ 1784001600000,
+ 77.89,
+ 0
+ ],
+ [
+ 1784005200000,
+ 82.49,
+ 0
+ ],
+ [
+ 1784008800000,
+ 92.05,
+ 0
+ ],
+ [
+ 1784012400000,
+ 93.67,
+ 0
+ ],
+ [
+ 1784016000000,
+ 91.43,
+ 0
+ ],
+ [
+ 1784019600000,
+ 92.08,
+ 0
+ ],
+ [
+ 1784023200000,
+ 99.33,
+ 0
+ ],
+ [
+ 1784026800000,
+ 99.7,
+ 0
+ ],
+ [
+ 1784030400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1784034000000,
+ 99.17,
+ 0
+ ],
+ [
+ 1784037600000,
+ 89.74,
+ 0
+ ],
+ [
+ 1784041200000,
+ 82.91,
+ 0
+ ],
+ [
+ 1784044800000,
+ 78.45,
+ 0
+ ],
+ [
+ 1784048400000,
+ 73.76,
+ 0
+ ],
+ [
+ 1784052000000,
+ 68.02,
+ 0
+ ],
+ [
+ 1784055600000,
+ 62.72,
+ 0
+ ],
+ [
+ 1784059200000,
+ 65.13,
+ 0
+ ],
+ [
+ 1784062800000,
+ 61.9,
+ 0
+ ],
+ [
+ 1784066400000,
+ 54.46,
+ 0
+ ],
+ [
+ 1784070000000,
+ 49.9,
+ 0
+ ],
+ [
+ 1784073600000,
+ 55.87,
+ 0
+ ],
+ [
+ 1784077200000,
+ 63.25,
+ 0
+ ],
+ [
+ 1784080800000,
+ 72.12,
+ 0
+ ],
+ [
+ 1784084400000,
+ 85.53,
+ 0
+ ],
+ [
+ 1784088000000,
+ 88.11,
+ 0
+ ],
+ [
+ 1784091600000,
+ 95.72,
+ 0
+ ],
+ [
+ 1784095200000,
+ 97.24,
+ 0
+ ],
+ [
+ 1784098800000,
+ 94.85,
+ 0
+ ],
+ [
+ 1784102400000,
+ 90.74,
+ 0
+ ],
+ [
+ 1784106000000,
+ 93.44,
+ 0
+ ],
+ [
+ 1784109600000,
+ 97.49,
+ 0
+ ],
+ [
+ 1784113200000,
+ 99.94,
+ 0
+ ],
+ [
+ 1784116800000,
+ 100.0,
+ 0
+ ],
+ [
+ 1784120400000,
+ 93.65,
+ 0
+ ],
+ [
+ 1784124000000,
+ 89.64,
+ 0
+ ],
+ [
+ 1784127600000,
+ 98.15,
+ 0
+ ],
+ [
+ 1784131200000,
+ 99.32,
+ 0
+ ],
+ [
+ 1784134800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1784138400000,
+ 99.4,
+ 0
+ ],
+ [
+ 1784142000000,
+ 91.18,
+ 0
+ ],
+ [
+ 1784145600000,
+ 84.13,
+ 0
+ ],
+ [
+ 1784149200000,
+ 79.6,
+ 0
+ ],
+ [
+ 1784152800000,
+ 75.77,
+ 0
+ ],
+ [
+ 1784156400000,
+ 69.16,
+ 0
+ ],
+ [
+ 1784160000000,
+ 77.4,
+ 0
+ ],
+ [
+ 1784163600000,
+ 84.78,
+ 0
+ ],
+ [
+ 1784167200000,
+ 95.25,
+ 0
+ ],
+ [
+ 1784170800000,
+ 96.93,
+ 0
+ ],
+ [
+ 1784174400000,
+ null,
+ 0
+ ],
+ [
+ 1784178000000,
+ null,
+ 0
+ ],
+ [
+ 1784181600000,
+ null,
+ 0
+ ],
+ [
+ 1784185200000,
+ null,
+ 0
+ ],
+ [
+ 1784188800000,
+ null,
+ 0
+ ],
+ [
+ 1784192400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1784196000000,
+ 94.27,
+ 0
+ ],
+ [
+ 1784199600000,
+ 90.9,
+ 0
+ ],
+ [
+ 1784203200000,
+ 92.62,
+ 0
+ ],
+ [
+ 1784206800000,
+ 90.84,
+ 0
+ ],
+ [
+ 1784210400000,
+ 85.48,
+ 0
+ ],
+ [
+ 1784214000000,
+ 80.0,
+ 0
+ ],
+ [
+ 1784217600000,
+ 74.87,
+ 0
+ ],
+ [
+ 1784221200000,
+ 71.23,
+ 0
+ ],
+ [
+ 1784224800000,
+ 68.67,
+ 0
+ ],
+ [
+ 1784228400000,
+ 66.44,
+ 0
+ ],
+ [
+ 1784232000000,
+ 61.33,
+ 0
+ ],
+ [
+ 1784235600000,
+ 54.27,
+ 0
+ ],
+ [
+ 1784239200000,
+ 52.77,
+ 0
+ ],
+ [
+ 1784242800000,
+ 52.73,
+ 0
+ ],
+ [
+ 1784246400000,
+ 55.29,
+ 0
+ ],
+ [
+ 1784250000000,
+ 64.85,
+ 0
+ ],
+ [
+ 1784253600000,
+ 81.03,
+ 0
+ ],
+ [
+ 1784257200000,
+ 80.89,
+ 0
+ ],
+ [
+ 1784260800000,
+ 84.63,
+ 0
+ ],
+ [
+ 1784264400000,
+ 86.88,
+ 0
+ ],
+ [
+ 1784268000000,
+ 86.54,
+ 0
+ ],
+ [
+ 1784271600000,
+ 87.22,
+ 0
+ ],
+ [
+ 1784275200000,
+ 87.34,
+ 0
+ ],
+ [
+ 1784278800000,
+ 90.37,
+ 0
+ ],
+ [
+ 1784282400000,
+ 91.02,
+ 0
+ ],
+ [
+ 1784286000000,
+ 97.34,
+ 0
+ ],
+ [
+ 1784289600000,
+ 99.48,
+ 0
+ ],
+ [
+ 1784293200000,
+ 95.83,
+ 0
+ ],
+ [
+ 1784296800000,
+ 84.19,
+ 0
+ ],
+ [
+ 1784300400000,
+ 77.44,
+ 0
+ ],
+ [
+ 1784304000000,
+ 74.23,
+ 0
+ ],
+ [
+ 1784307600000,
+ 72.88,
+ 0
+ ],
+ [
+ 1784311200000,
+ 71.06,
+ 0
+ ],
+ [
+ 1784314800000,
+ 61.6,
+ 0
+ ],
+ [
+ 1784318400000,
+ 61.44,
+ 0
+ ],
+ [
+ 1784322000000,
+ 58.23,
+ 0
+ ],
+ [
+ 1784325600000,
+ 63.49,
+ 0
+ ],
+ [
+ 1784329200000,
+ 63.53,
+ 0
+ ],
+ [
+ 1784332800000,
+ 59.36,
+ 0
+ ],
+ [
+ 1784336400000,
+ 60.84,
+ 0
+ ],
+ [
+ 1784340000000,
+ 68.77,
+ 0
+ ],
+ [
+ 1784343600000,
+ 74.63,
+ 0
+ ],
+ [
+ 1784347200000,
+ 74.38,
+ 0
+ ],
+ [
+ 1784350800000,
+ 83.13,
+ 0
+ ],
+ [
+ 1784354400000,
+ 88.99,
+ 0
+ ],
+ [
+ 1784358000000,
+ 82.44,
+ 0
+ ],
+ [
+ 1784361600000,
+ 80.0,
+ 0
+ ],
+ [
+ 1784365200000,
+ 76.98,
+ 0
+ ],
+ [
+ 1784368800000,
+ 78.15,
+ 0
+ ],
+ [
+ 1784372400000,
+ 78.29,
+ 0
+ ],
+ [
+ 1784376000000,
+ 79.1,
+ 0
+ ],
+ [
+ 1784379600000,
+ 78.93,
+ 0
+ ],
+ [
+ 1784383200000,
+ 75.44,
+ 0
+ ],
+ [
+ 1784386800000,
+ 68.97,
+ 0
+ ],
+ [
+ 1784390400000,
+ 60.63,
+ 0
+ ],
+ [
+ 1784394000000,
+ 58.71,
+ 0
+ ],
+ [
+ 1784397600000,
+ 57.65,
+ 0
+ ],
+ [
+ 1784401200000,
+ 56.48,
+ 0
+ ],
+ [
+ 1784404800000,
+ 55.33,
+ 0
+ ],
+ [
+ 1784408400000,
+ 55.72,
+ 0
+ ],
+ [
+ 1784412000000,
+ 52.81,
+ 0
+ ],
+ [
+ 1784415600000,
+ 55.38,
+ 0
+ ],
+ [
+ 1784419200000,
+ 56.79,
+ 0
+ ],
+ [
+ 1784422800000,
+ 60.39,
+ 0
+ ],
+ [
+ 1784426400000,
+ 62.61,
+ 0
+ ],
+ [
+ 1784430000000,
+ 64.99,
+ 0
+ ],
+ [
+ 1784433600000,
+ 68.65,
+ 0
+ ],
+ [
+ 1784437200000,
+ 68.73,
+ 0
+ ],
+ [
+ 1784440800000,
+ 70.69,
+ 0
+ ],
+ [
+ 1784444400000,
+ 74.07,
+ 0
+ ],
+ [
+ 1784448000000,
+ 78.79,
+ 0
+ ],
+ [
+ 1784451600000,
+ 79.36,
+ 0
+ ],
+ [
+ 1784455200000,
+ 82.17,
+ 0
+ ],
+ [
+ 1784458800000,
+ 82.1,
+ 0
+ ],
+ [
+ 1784462400000,
+ 82.41,
+ 0
+ ],
+ [
+ 1784466000000,
+ 80.84,
+ 0
+ ],
+ [
+ 1784469600000,
+ 74.91,
+ 0
+ ],
+ [
+ 1784473200000,
+ 71.71,
+ 0
+ ],
+ [
+ 1784476800000,
+ 69.68,
+ 0
+ ],
+ [
+ 1784480400000,
+ 67.71,
+ 0
+ ],
+ [
+ 1784484000000,
+ 66.26,
+ 0
+ ],
+ [
+ 1784487600000,
+ 60.34,
+ 0
+ ],
+ [
+ 1784491200000,
+ 55.84,
+ 0
+ ],
+ [
+ 1784494800000,
+ 51.04,
+ 0
+ ],
+ [
+ 1784498400000,
+ 46.42,
+ 0
+ ],
+ [
+ 1784502000000,
+ 48.67,
+ 0
+ ],
+ [
+ 1784505600000,
+ 54.09,
+ 0
+ ],
+ [
+ 1784509200000,
+ 55.88,
+ 0
+ ],
+ [
+ 1784512800000,
+ 65.28,
+ 0
+ ],
+ [
+ 1784516400000,
+ 70.87,
+ 0
+ ],
+ [
+ 1784520000000,
+ 78.35,
+ 0
+ ],
+ [
+ 1784523600000,
+ 76.51,
+ 0
+ ],
+ [
+ 1784527200000,
+ 74.71,
+ 0
+ ],
+ [
+ 1784530800000,
+ 84.14,
+ 0
+ ],
+ [
+ 1784534400000,
+ 83.77,
+ 0
+ ],
+ [
+ 1784538000000,
+ 93.91,
+ 0
+ ],
+ [
+ 1784541600000,
+ 95.41,
+ 0
+ ],
+ [
+ 1784545200000,
+ 94.26,
+ 0
+ ],
+ [
+ 1784548800000,
+ 91.57,
+ 0
+ ],
+ [
+ 1784552400000,
+ 79.34,
+ 0
+ ],
+ [
+ 1784556000000,
+ 72.63,
+ 0
+ ],
+ [
+ 1784559600000,
+ 67.52,
+ 0
+ ],
+ [
+ 1784563200000,
+ 66.58,
+ 0
+ ],
+ [
+ 1784566800000,
+ 65.41,
+ 0
+ ],
+ [
+ 1784570400000,
+ 60.87,
+ 0
+ ],
+ [
+ 1784574000000,
+ 56.34,
+ 0
+ ],
+ [
+ 1784577600000,
+ 50.46,
+ 0
+ ],
+ [
+ 1784581200000,
+ 48.92,
+ 0
+ ],
+ [
+ 1784584800000,
+ 46.22,
+ 0
+ ],
+ [
+ 1784588400000,
+ 44.86,
+ 0
+ ],
+ [
+ 1784592000000,
+ 44.2,
+ 0
+ ],
+ [
+ 1784595600000,
+ 50.49,
+ 0
+ ],
+ [
+ 1784599200000,
+ 57.93,
+ 0
+ ],
+ [
+ 1784602800000,
+ 61.07,
+ 0
+ ],
+ [
+ 1784606400000,
+ 65.42,
+ 0
+ ],
+ [
+ 1784610000000,
+ 67.1,
+ 0
+ ],
+ [
+ 1784613600000,
+ 68.49,
+ 0
+ ],
+ [
+ 1784617200000,
+ 69.68,
+ 0
+ ],
+ [
+ 1784620800000,
+ 71.82,
+ 0
+ ],
+ [
+ 1784624400000,
+ 73.67,
+ 0
+ ],
+ [
+ 1784628000000,
+ 69.67,
+ 0
+ ],
+ [
+ 1784631600000,
+ 78.31,
+ 0
+ ],
+ [
+ 1784635200000,
+ 86.49,
+ 0
+ ],
+ [
+ 1784638800000,
+ 71.94,
+ 0
+ ],
+ [
+ 1784642400000,
+ 66.14,
+ 0
+ ],
+ [
+ 1784646000000,
+ 63.17,
+ 0
+ ],
+ [
+ 1784649600000,
+ 60.98,
+ 0
+ ],
+ [
+ 1784653200000,
+ 56.39,
+ 0
+ ],
+ [
+ 1784656800000,
+ 54.66,
+ 0
+ ],
+ [
+ 1784660400000,
+ 53.61,
+ 0
+ ],
+ [
+ 1784664000000,
+ 51.95,
+ 0
+ ],
+ [
+ 1784667600000,
+ 53.51,
+ 0
+ ],
+ [
+ 1784671200000,
+ 55.27,
+ 0
+ ],
+ [
+ 1784674800000,
+ 52.58,
+ 0
+ ],
+ [
+ 1784678400000,
+ 50.05,
+ 0
+ ],
+ [
+ 1784682000000,
+ 56.72,
+ 0
+ ],
+ [
+ 1784685600000,
+ 64.88,
+ 0
+ ],
+ [
+ 1784689200000,
+ 69.04,
+ 0
+ ],
+ [
+ 1784692800000,
+ 62.57,
+ 0
+ ],
+ [
+ 1784696400000,
+ 67.56,
+ 0
+ ],
+ [
+ 1784700000000,
+ 67.03,
+ 0
+ ],
+ [
+ 1784703600000,
+ 63.03,
+ 0
+ ],
+ [
+ 1784707200000,
+ 66.31,
+ 0
+ ],
+ [
+ 1784710800000,
+ 63.62,
+ 0
+ ],
+ [
+ 1784714400000,
+ 64.09,
+ 0
+ ],
+ [
+ 1784718000000,
+ 67.62,
+ 0
+ ],
+ [
+ 1784721600000,
+ 71.34,
+ 0
+ ],
+ [
+ 1784725200000,
+ 70.41,
+ 0
+ ],
+ [
+ 1784728800000,
+ 66.99,
+ 0
+ ],
+ [
+ 1784732400000,
+ 65.63,
+ 0
+ ],
+ [
+ 1784736000000,
+ 61.82,
+ 0
+ ],
+ [
+ 1784739600000,
+ 58.2,
+ 0
+ ],
+ [
+ 1784743200000,
+ 52.72,
+ 0
+ ],
+ [
+ 1784746800000,
+ 45.46,
+ 0
+ ],
+ [
+ 1784750400000,
+ 48.0,
+ 0
+ ],
+ [
+ 1784754000000,
+ 45.15,
+ 0
+ ],
+ [
+ 1784757600000,
+ 43.69,
+ 0
+ ],
+ [
+ 1784761200000,
+ 43.43,
+ 0
+ ],
+ [
+ 1784764800000,
+ 42.87,
+ 0
+ ],
+ [
+ 1784768400000,
+ 48.04,
+ 0
+ ],
+ [
+ 1784772000000,
+ 53.39,
+ 0
+ ],
+ [
+ 1784775600000,
+ 61.27,
+ 0
+ ],
+ [
+ 1784779200000,
+ 69.68,
+ 0
+ ],
+ [
+ 1784782800000,
+ 75.11,
+ 0
+ ],
+ [
+ 1784786400000,
+ 75.37,
+ 0
+ ],
+ [
+ 1784790000000,
+ 76.95,
+ 0
+ ],
+ [
+ 1784793600000,
+ 72.43,
+ 0
+ ],
+ [
+ 1784797200000,
+ 72.72,
+ 0
+ ],
+ [
+ 1784800800000,
+ 73.94,
+ 0
+ ],
+ [
+ 1784804400000,
+ 79.53,
+ 0
+ ],
+ [
+ 1784808000000,
+ 80.56,
+ 0
+ ],
+ [
+ 1784811600000,
+ 79.32,
+ 0
+ ],
+ [
+ 1784815200000,
+ 74.03,
+ 0
+ ],
+ [
+ 1784818800000,
+ 67.24,
+ 0
+ ],
+ [
+ 1784822400000,
+ 62.03,
+ 0
+ ],
+ [
+ 1784826000000,
+ 57.74,
+ 0
+ ],
+ [
+ 1784829600000,
+ 55.0,
+ 0
+ ],
+ [
+ 1784833200000,
+ 50.04,
+ 0
+ ],
+ [
+ 1784836800000,
+ 49.57,
+ 0
+ ],
+ [
+ 1784840400000,
+ 47.54,
+ 0
+ ],
+ [
+ 1784844000000,
+ 45.29,
+ 0
+ ],
+ [
+ 1784847600000,
+ 46.6,
+ 0
+ ],
+ [
+ 1784851200000,
+ 48.65,
+ 0
+ ],
+ [
+ 1784854800000,
+ 51.54,
+ 0
+ ],
+ [
+ 1784858400000,
+ 59.03,
+ 0
+ ],
+ [
+ 1784862000000,
+ 72.1,
+ 0
+ ],
+ [
+ 1784865600000,
+ 64.51,
+ 0
+ ],
+ [
+ 1784869200000,
+ 69.84,
+ 0
+ ],
+ [
+ 1784872800000,
+ 79.01,
+ 0
+ ],
+ [
+ 1784876400000,
+ 75.26,
+ 0
+ ],
+ [
+ 1784880000000,
+ 79.81,
+ 0
+ ],
+ [
+ 1784883600000,
+ 80.02,
+ 0
+ ],
+ [
+ 1784887200000,
+ 81.3,
+ 0
+ ],
+ [
+ 1784890800000,
+ 82.4,
+ 0
+ ],
+ [
+ 1784894400000,
+ 80.53,
+ 0
+ ],
+ [
+ 1784898000000,
+ 78.86,
+ 0
+ ],
+ [
+ 1784901600000,
+ 79.74,
+ 0
+ ],
+ [
+ 1784905200000,
+ 75.73,
+ 0
+ ],
+ [
+ 1784908800000,
+ 76.97,
+ 0
+ ],
+ [
+ 1784912400000,
+ 76.57,
+ 0
+ ],
+ [
+ 1784916000000,
+ 71.79,
+ 0
+ ],
+ [
+ 1784919600000,
+ 66.52,
+ 0
+ ],
+ [
+ 1784923200000,
+ 65.32,
+ 0
+ ],
+ [
+ 1784926800000,
+ 67.11,
+ 0
+ ],
+ [
+ 1784930400000,
+ 70.68,
+ 0
+ ],
+ [
+ 1784934000000,
+ 70.62,
+ 0
+ ],
+ [
+ 1784937600000,
+ 73.57,
+ 0
+ ],
+ [
+ 1784941200000,
+ 76.56,
+ 0
+ ],
+ [
+ 1784944800000,
+ 81.57,
+ 0
+ ],
+ [
+ 1784948400000,
+ 84.27,
+ 0
+ ],
+ [
+ 1784952000000,
+ 82.38,
+ 0
+ ],
+ [
+ 1784955600000,
+ 82.92,
+ 0
+ ],
+ [
+ 1784959200000,
+ 82.69,
+ 0
+ ],
+ [
+ 1784962800000,
+ 84.55,
+ 0
+ ],
+ [
+ 1784966400000,
+ 83.05,
+ 0
+ ],
+ [
+ 1784970000000,
+ 90.92,
+ 0
+ ],
+ [
+ 1784973600000,
+ 90.72,
+ 0
+ ],
+ [
+ 1784977200000,
+ 88.09,
+ 0
+ ],
+ [
+ 1784980800000,
+ 84.36,
+ 0
+ ],
+ [
+ 1784984400000,
+ 80.35,
+ 0
+ ],
+ [
+ 1784988000000,
+ 75.04,
+ 0
+ ],
+ [
+ 1784991600000,
+ 69.63,
+ 0
+ ],
+ [
+ 1784995200000,
+ 65.78,
+ 0
+ ],
+ [
+ 1784998800000,
+ 60.19,
+ 0
+ ],
+ [
+ 1785002400000,
+ 56.93,
+ 0
+ ],
+ [
+ 1785006000000,
+ 53.72,
+ 0
+ ],
+ [
+ 1785009600000,
+ 52.22,
+ 0
+ ],
+ [
+ 1785013200000,
+ 52.73,
+ 0
+ ],
+ [
+ 1785016800000,
+ 49.32,
+ 0
+ ],
+ [
+ 1785020400000,
+ 47.05,
+ 0
+ ],
+ [
+ 1785024000000,
+ 47.57,
+ 0
+ ],
+ [
+ 1785027600000,
+ 49.6,
+ 0
+ ],
+ [
+ 1785031200000,
+ 57.22,
+ 0
+ ],
+ [
+ 1785034800000,
+ 61.48,
+ 0
+ ],
+ [
+ 1785038400000,
+ 63.66,
+ 0
+ ],
+ [
+ 1785042000000,
+ 64.0,
+ 0
+ ],
+ [
+ 1785045600000,
+ 62.95,
+ 0
+ ],
+ [
+ 1785049200000,
+ 61.03,
+ 0
+ ],
+ [
+ 1785052800000,
+ 59.72,
+ 0
+ ],
+ [
+ 1785056400000,
+ 59.76,
+ 0
+ ],
+ [
+ 1785060000000,
+ 63.2,
+ 0
+ ],
+ [
+ 1785063600000,
+ 61.73,
+ 0
+ ],
+ [
+ 1785067200000,
+ 61.49,
+ 0
+ ],
+ [
+ 1785070800000,
+ 62.59,
+ 0
+ ],
+ [
+ 1785074400000,
+ 61.37,
+ 0
+ ],
+ [
+ 1785078000000,
+ 60.46,
+ 0
+ ],
+ [
+ 1785081600000,
+ 56.23,
+ 0
+ ],
+ [
+ 1785085200000,
+ 54.1,
+ 0
+ ],
+ [
+ 1785088800000,
+ 55.66,
+ 0
+ ],
+ [
+ 1785092400000,
+ 49.64,
+ 0
+ ],
+ [
+ 1785096000000,
+ 44.96,
+ 0
+ ],
+ [
+ 1785099600000,
+ 39.85,
+ 0
+ ],
+ [
+ 1785103200000,
+ 38.43,
+ 0
+ ],
+ [
+ 1785106800000,
+ 42.86,
+ 0
+ ],
+ [
+ 1785110400000,
+ 41.09,
+ 0
+ ],
+ [
+ 1785114000000,
+ 44.47,
+ 0
+ ],
+ [
+ 1785117600000,
+ 50.5,
+ 0
+ ],
+ [
+ 1785121200000,
+ 55.22,
+ 0
+ ],
+ [
+ 1785124800000,
+ 54.92,
+ 0
+ ],
+ [
+ 1785128400000,
+ 56.88,
+ 0
+ ],
+ [
+ 1785132000000,
+ 58.54,
+ 0
+ ],
+ [
+ 1785135600000,
+ 58.24,
+ 0
+ ],
+ [
+ 1785139200000,
+ 60.4,
+ 0
+ ],
+ [
+ 1785142800000,
+ 62.1,
+ 0
+ ],
+ [
+ 1785146400000,
+ 61.68,
+ 0
+ ],
+ [
+ 1785150000000,
+ 63.77,
+ 0
+ ],
+ [
+ 1785153600000,
+ 69.87,
+ 0
+ ],
+ [
+ 1785157200000,
+ 62.68,
+ 0
+ ],
+ [
+ 1785160800000,
+ 58.84,
+ 0
+ ],
+ [
+ 1785164400000,
+ 54.95,
+ 0
+ ],
+ [
+ 1785168000000,
+ 49.31,
+ 0
+ ],
+ [
+ 1785171600000,
+ 45.92,
+ 0
+ ],
+ [
+ 1785175200000,
+ 44.73,
+ 0
+ ],
+ [
+ 1785178800000,
+ 36.11,
+ 0
+ ],
+ [
+ 1785182400000,
+ 37.05,
+ 0
+ ],
+ [
+ 1785186000000,
+ 37.87,
+ 0
+ ],
+ [
+ 1785189600000,
+ 37.18,
+ 0
+ ],
+ [
+ 1785193200000,
+ 35.33,
+ 0
+ ],
+ [
+ 1785196800000,
+ 36.14,
+ 0
+ ],
+ [
+ 1785200400000,
+ 38.65,
+ 0
+ ],
+ [
+ 1785204000000,
+ 45.32,
+ 0
+ ],
+ [
+ 1785207600000,
+ 53.07,
+ 0
+ ],
+ [
+ 1785211200000,
+ 52.34,
+ 0
+ ],
+ [
+ 1785214800000,
+ 54.3,
+ 0
+ ],
+ [
+ 1785218400000,
+ 52.41,
+ 0
+ ],
+ [
+ 1785222000000,
+ 58.26,
+ 0
+ ],
+ [
+ 1785225600000,
+ 62.29,
+ 0
+ ],
+ [
+ 1785229200000,
+ 62.39,
+ 0
+ ],
+ [
+ 1785232800000,
+ 61.62,
+ 0
+ ],
+ [
+ 1785236400000,
+ 60.87,
+ 0
+ ],
+ [
+ 1785240000000,
+ 62.82,
+ 0
+ ],
+ [
+ 1785243600000,
+ 65.0,
+ 0
+ ],
+ [
+ 1785247200000,
+ 64.9,
+ 0
+ ],
+ [
+ 1785250800000,
+ 63.74,
+ 0
+ ],
+ [
+ 1785254400000,
+ 62.12,
+ 0
+ ],
+ [
+ 1785258000000,
+ 60.83,
+ 0
+ ],
+ [
+ 1785261600000,
+ 57.32,
+ 0
+ ],
+ [
+ 1785265200000,
+ 56.55,
+ 0
+ ],
+ [
+ 1785268800000,
+ 59.53,
+ 0
+ ],
+ [
+ 1785272400000,
+ 60.13,
+ 0
+ ],
+ [
+ 1785276000000,
+ 50.41,
+ 0
+ ],
+ [
+ 1785279600000,
+ 45.68,
+ 0
+ ],
+ [
+ 1785283200000,
+ 50.05,
+ 0
+ ],
+ [
+ 1785286800000,
+ 54.45,
+ 0
+ ],
+ [
+ 1785290400000,
+ 67.25,
+ 0
+ ],
+ [
+ 1785294000000,
+ 78.3,
+ 0
+ ],
+ [
+ 1785297600000,
+ 79.63,
+ 0
+ ],
+ [
+ 1785301200000,
+ 74.21,
+ 0
+ ],
+ [
+ 1785304800000,
+ 64.22,
+ 0
+ ],
+ [
+ 1785308400000,
+ 80.54,
+ 0
+ ],
+ [
+ 1785312000000,
+ 74.37,
+ 0
+ ],
+ [
+ 1785315600000,
+ 66.57,
+ 0
+ ],
+ [
+ 1785319200000,
+ 74.43,
+ 0
+ ],
+ [
+ 1785322800000,
+ 63.69,
+ 0
+ ],
+ [
+ 1785326400000,
+ 64.46,
+ 0
+ ],
+ [
+ 1785330000000,
+ 66.62,
+ 0
+ ],
+ [
+ 1785333600000,
+ 65.72,
+ 0
+ ],
+ [
+ 1785337200000,
+ 63.59,
+ 0
+ ],
+ [
+ 1785340800000,
+ 62.27,
+ 0
+ ],
+ [
+ 1785344400000,
+ 58.62,
+ 0
+ ],
+ [
+ 1785348000000,
+ 51.6,
+ 0
+ ],
+ [
+ 1785351600000,
+ 48.06,
+ 0
+ ],
+ [
+ 1785355200000,
+ 48.04,
+ 0
+ ],
+ [
+ 1785358800000,
+ 47.36,
+ 0
+ ],
+ [
+ 1785362400000,
+ 50.19,
+ 0
+ ],
+ [
+ 1785366000000,
+ 62.68,
+ 0
+ ],
+ [
+ 1785369600000,
+ 68.36,
+ 0
+ ],
+ [
+ 1785373200000,
+ 71.28,
+ 0
+ ],
+ [
+ 1785376800000,
+ 89.68,
+ 0
+ ],
+ [
+ 1785380400000,
+ 94.83,
+ 0
+ ],
+ [
+ 1785384000000,
+ 90.27,
+ 0
+ ],
+ [
+ 1785387600000,
+ 93.56,
+ 0
+ ],
+ [
+ 1785391200000,
+ 94.23,
+ 0
+ ],
+ [
+ 1785394800000,
+ 99.19,
+ 0
+ ],
+ [
+ 1785398400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1785402000000,
+ 99.95,
+ 0
+ ],
+ [
+ 1785405600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785409200000,
+ 100.03,
+ 0
+ ],
+ [
+ 1785412800000,
+ 100.02,
+ 0
+ ],
+ [
+ 1785416400000,
+ 100.03,
+ 0
+ ],
+ [
+ 1785420000000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785423600000,
+ 99.57,
+ 0
+ ],
+ [
+ 1785427200000,
+ 89.85,
+ 0
+ ],
+ [
+ 1785430800000,
+ 76.61,
+ 0
+ ],
+ [
+ 1785434400000,
+ 68.35,
+ 0
+ ],
+ [
+ 1785438000000,
+ 61.13,
+ 0
+ ],
+ [
+ 1785441600000,
+ 55.41,
+ 0
+ ],
+ [
+ 1785445200000,
+ 52.72,
+ 0
+ ],
+ [
+ 1785448800000,
+ 63.43,
+ 0
+ ],
+ [
+ 1785452400000,
+ 54.75,
+ 0
+ ],
+ [
+ 1785456000000,
+ 56.93,
+ 0
+ ],
+ [
+ 1785459600000,
+ 62.67,
+ 0
+ ],
+ [
+ 1785463200000,
+ 71.23,
+ 0
+ ],
+ [
+ 1785466800000,
+ 76.94,
+ 0
+ ],
+ [
+ 1785470400000,
+ 80.99,
+ 0
+ ],
+ [
+ 1785474000000,
+ 83.22,
+ 0
+ ],
+ [
+ 1785477600000,
+ 85.79,
+ 0
+ ],
+ [
+ 1785481200000,
+ 90.63,
+ 0
+ ],
+ [
+ 1785484800000,
+ 88.62,
+ 0
+ ],
+ [
+ 1785488400000,
+ 82.66,
+ 0
+ ],
+ [
+ 1785492000000,
+ 87.47,
+ 0
+ ],
+ [
+ 1785495600000,
+ 93.2,
+ 0
+ ],
+ [
+ 1785499200000,
+ 93.16,
+ 0
+ ],
+ [
+ 1785502800000,
+ 87.22,
+ 0
+ ],
+ [
+ 1785506400000,
+ 71.05,
+ 0
+ ],
+ [
+ 1785510000000,
+ 62.47,
+ 0
+ ],
+ [
+ 1785513600000,
+ 69.29,
+ 0
+ ],
+ [
+ 1785517200000,
+ 77.46,
+ 0
+ ],
+ [
+ 1785520800000,
+ 57.95,
+ 0
+ ],
+ [
+ 1785524400000,
+ 47.2,
+ 0
+ ],
+ [
+ 1785528000000,
+ 43.23,
+ 0
+ ],
+ [
+ 1785531600000,
+ 38.03,
+ 0
+ ],
+ [
+ 1785535200000,
+ 42.5,
+ 0
+ ],
+ [
+ 1785538800000,
+ 39.17,
+ 0
+ ],
+ [
+ 1785542400000,
+ 36.65,
+ 0
+ ],
+ [
+ 1785546000000,
+ 42.57,
+ 0
+ ],
+ [
+ 1785549600000,
+ 47.03,
+ 0
+ ],
+ [
+ 1785553200000,
+ 50.93,
+ 0
+ ],
+ [
+ 1785556800000,
+ 53.28,
+ 0
+ ],
+ [
+ 1785560400000,
+ 53.95,
+ 0
+ ],
+ [
+ 1785564000000,
+ 55.69,
+ 0
+ ],
+ [
+ 1785567600000,
+ 60.99,
+ 0
+ ],
+ [
+ 1785571200000,
+ 67.69,
+ 0
+ ],
+ [
+ 1785574800000,
+ 67.2,
+ 0
+ ],
+ [
+ 1785578400000,
+ 74.05,
+ 0
+ ],
+ [
+ 1785582000000,
+ 78.26,
+ 0
+ ],
+ [
+ 1785585600000,
+ 77.67,
+ 0
+ ],
+ [
+ 1785589200000,
+ 75.13,
+ 0
+ ],
+ [
+ 1785592800000,
+ 70.0,
+ 0
+ ],
+ [
+ 1785596400000,
+ 65.65,
+ 0
+ ],
+ [
+ 1785600000000,
+ 63.22,
+ 0
+ ],
+ [
+ 1785603600000,
+ 59.54,
+ 0
+ ],
+ [
+ 1785607200000,
+ 54.13,
+ 0
+ ],
+ [
+ 1785610800000,
+ 48.88,
+ 0
+ ],
+ [
+ 1785614400000,
+ 43.93,
+ 0
+ ],
+ [
+ 1785618000000,
+ 40.08,
+ 0
+ ],
+ [
+ 1785621600000,
+ 36.54,
+ 0
+ ],
+ [
+ 1785625200000,
+ 33.99,
+ 0
+ ],
+ [
+ 1785628800000,
+ 35.72,
+ 0
+ ],
+ [
+ 1785632400000,
+ 39.78,
+ 0
+ ],
+ [
+ 1785636000000,
+ 47.55,
+ 0
+ ],
+ [
+ 1785639600000,
+ 52.93,
+ 0
+ ],
+ [
+ 1785643200000,
+ 59.58,
+ 0
+ ],
+ [
+ 1785646800000,
+ 64.22,
+ 0
+ ],
+ [
+ 1785650400000,
+ 66.77,
+ 0
+ ],
+ [
+ 1785654000000,
+ 73.16,
+ 0
+ ],
+ [
+ 1785657600000,
+ 79.52,
+ 0
+ ],
+ [
+ 1785661200000,
+ 77.87,
+ 0
+ ],
+ [
+ 1785664800000,
+ 78.95,
+ 0
+ ],
+ [
+ 1785668400000,
+ 81.32,
+ 0
+ ],
+ [
+ 1785672000000,
+ 82.76,
+ 0
+ ],
+ [
+ 1785675600000,
+ 83.58,
+ 0
+ ],
+ [
+ 1785679200000,
+ 77.79,
+ 0
+ ],
+ [
+ 1785682800000,
+ 67.8,
+ 0
+ ],
+ [
+ 1785686400000,
+ 60.96,
+ 0
+ ],
+ [
+ 1785690000000,
+ 55.54,
+ 0
+ ],
+ [
+ 1785693600000,
+ 51.37,
+ 0
+ ],
+ [
+ 1785697200000,
+ 49.93,
+ 0
+ ],
+ [
+ 1785700800000,
+ 46.24,
+ 0
+ ],
+ [
+ 1785704400000,
+ 44.45,
+ 0
+ ],
+ [
+ 1785708000000,
+ 41.81,
+ 0
+ ],
+ [
+ 1785711600000,
+ 39.71,
+ 0
+ ],
+ [
+ 1785715200000,
+ 39.93,
+ 0
+ ],
+ [
+ 1785718800000,
+ 42.46,
+ 0
+ ],
+ [
+ 1785722400000,
+ 56.18,
+ 0
+ ],
+ [
+ 1785726000000,
+ 70.45,
+ 0
+ ],
+ [
+ 1785729600000,
+ 77.92,
+ 0
+ ],
+ [
+ 1785733200000,
+ 85.28,
+ 0
+ ],
+ [
+ 1785736800000,
+ 89.57,
+ 0
+ ],
+ [
+ 1785740400000,
+ 98.69,
+ 0
+ ],
+ [
+ 1785744000000,
+ 100.02,
+ 0
+ ],
+ [
+ 1785747600000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785751200000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785754800000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785758400000,
+ 100.04,
+ 0
+ ],
+ [
+ 1785762000000,
+ 99.45,
+ 0
+ ],
+ [
+ 1785765600000,
+ 93.34,
+ 0
+ ],
+ [
+ 1785769200000,
+ 81.09,
+ 0
+ ],
+ [
+ 1785772800000,
+ 69.36,
+ 0
+ ],
+ [
+ 1785776400000,
+ 57.01,
+ 0
+ ],
+ [
+ 1785780000000,
+ 48.15,
+ 0
+ ],
+ [
+ 1785783600000,
+ 42.87,
+ 0
+ ],
+ [
+ 1785787200000,
+ 40.5,
+ 0
+ ],
+ [
+ 1785790800000,
+ 38.91,
+ 0
+ ],
+ [
+ 1785794400000,
+ 37.33,
+ 0
+ ],
+ [
+ 1785798000000,
+ 36.91,
+ 0
+ ],
+ [
+ 1785801600000,
+ 38.32,
+ 0
+ ],
+ [
+ 1785805200000,
+ 41.63,
+ 0
+ ],
+ [
+ 1785808800000,
+ 50.13,
+ 0
+ ],
+ [
+ 1785812400000,
+ 68.07,
+ 0
+ ],
+ [
+ 1785816000000,
+ 72.26,
+ 0
+ ],
+ [
+ 1785819600000,
+ 74.73,
+ 0
+ ],
+ [
+ 1785823200000,
+ 81.06,
+ 0
+ ],
+ [
+ 1785826800000,
+ 86.3,
+ 0
+ ],
+ [
+ 1785830400000,
+ 85.96,
+ 0
+ ],
+ [
+ 1785834000000,
+ 87.03,
+ 0
+ ],
+ [
+ 1785837600000,
+ 88.68,
+ 0
+ ],
+ [
+ 1785841200000,
+ 90.82,
+ 0
+ ],
+ [
+ 1785844800000,
+ 90.21,
+ 0
+ ],
+ [
+ 1785848400000,
+ 90.32,
+ 0
+ ],
+ [
+ 1785852000000,
+ 85.7,
+ 0
+ ],
+ [
+ 1785855600000,
+ 75.67,
+ 0
+ ],
+ [
+ 1785859200000,
+ 67.15,
+ 0
+ ],
+ [
+ 1785862800000,
+ 58.86,
+ 0
+ ],
+ [
+ 1785866400000,
+ 49.71,
+ 0
+ ],
+ [
+ 1785870000000,
+ 40.47,
+ 0
+ ],
+ [
+ 1785873600000,
+ 35.44,
+ 0
+ ],
+ [
+ 1785877200000,
+ 29.48,
+ 0
+ ],
+ [
+ 1785880800000,
+ 31.06,
+ 0
+ ],
+ [
+ 1785884400000,
+ 32.96,
+ 0
+ ],
+ [
+ 1785888000000,
+ 34.97,
+ 0
+ ],
+ [
+ 1785891600000,
+ 39.57,
+ 0
+ ],
+ [
+ 1785895200000,
+ 49.87,
+ 0
+ ],
+ [
+ 1785898800000,
+ 51.72,
+ 0
+ ],
+ [
+ 1785902400000,
+ 69.56,
+ 0
+ ],
+ [
+ 1785906000000,
+ 63.67,
+ 0
+ ],
+ [
+ 1785909600000,
+ 68.51,
+ 0
+ ],
+ [
+ 1785913200000,
+ 75.57,
+ 0
+ ],
+ [
+ 1785916800000,
+ 73.24,
+ 0
+ ],
+ [
+ 1785920400000,
+ 70.18,
+ 0
+ ],
+ [
+ 1785924000000,
+ 76.06,
+ 0
+ ],
+ [
+ 1785927600000,
+ 78.82,
+ 0
+ ],
+ [
+ 1785931200000,
+ 87.3,
+ 0
+ ],
+ [
+ 1785934800000,
+ 88.51,
+ 0
+ ],
+ [
+ 1785938400000,
+ 82.85,
+ 0
+ ],
+ [
+ 1785942000000,
+ 74.94,
+ 0
+ ],
+ [
+ 1785945600000,
+ 66.28,
+ 0
+ ],
+ [
+ 1785949200000,
+ 49.38,
+ 0
+ ],
+ [
+ 1785952800000,
+ 38.7,
+ 0
+ ],
+ [
+ 1785956400000,
+ 33.24,
+ 0
+ ],
+ [
+ 1785960000000,
+ 33.71,
+ 0
+ ],
+ [
+ 1785963600000,
+ 35.92,
+ 0
+ ],
+ [
+ 1785967200000,
+ 29.16,
+ 0
+ ],
+ [
+ 1785970800000,
+ 26.09,
+ 0
+ ],
+ [
+ 1785974400000,
+ 27.41,
+ 0
+ ],
+ [
+ 1785978000000,
+ 35.13,
+ 0
+ ],
+ [
+ 1785981600000,
+ 44.76,
+ 0
+ ],
+ [
+ 1785985200000,
+ 48.83,
+ 0
+ ],
+ [
+ 1785988800000,
+ 47.64,
+ 0
+ ],
+ [
+ 1785992400000,
+ 72.17,
+ 0
+ ],
+ [
+ 1785996000000,
+ 80.03,
+ 0
+ ],
+ [
+ 1785999600000,
+ 60.18,
+ 0
+ ],
+ [
+ 1786003200000,
+ 63.52,
+ 0
+ ],
+ [
+ 1786006800000,
+ 65.12,
+ 0
+ ],
+ [
+ 1786010400000,
+ 68.72,
+ 0
+ ],
+ [
+ 1786014000000,
+ 70.63,
+ 0
+ ],
+ [
+ 1786017600000,
+ 71.89,
+ 0
+ ],
+ [
+ 1786021200000,
+ 72.79,
+ 0
+ ],
+ [
+ 1786024800000,
+ 68.92,
+ 0
+ ],
+ [
+ 1786028400000,
+ 61.48,
+ 0
+ ],
+ [
+ 1786032000000,
+ 60.32,
+ 0
+ ],
+ [
+ 1786035600000,
+ 53.62,
+ 0
+ ],
+ [
+ 1786039200000,
+ 50.42,
+ 0
+ ],
+ [
+ 1786042800000,
+ 48.96,
+ 0
+ ],
+ [
+ 1786046400000,
+ 40.58,
+ 0
+ ],
+ [
+ 1786050000000,
+ 39.46,
+ 0
+ ],
+ [
+ 1786053600000,
+ 34.24,
+ 0
+ ],
+ [
+ 1786057200000,
+ 36.71,
+ 0
+ ],
+ [
+ 1786060800000,
+ 30.75,
+ 0
+ ],
+ [
+ 1786064400000,
+ 31.28,
+ 0
+ ],
+ [
+ 1786068000000,
+ 45.55,
+ 0
+ ],
+ [
+ 1786071600000,
+ 49.57,
+ 0
+ ],
+ [
+ 1786075200000,
+ 46.6,
+ 0
+ ],
+ [
+ 1786078800000,
+ 50.81,
+ 0
+ ],
+ [
+ 1786082400000,
+ 76.72,
+ 0
+ ],
+ [
+ 1786086000000,
+ 69.62,
+ 0
+ ],
+ [
+ 1786089600000,
+ 69.78,
+ 0
+ ],
+ [
+ 1786093200000,
+ 82.15,
+ 0
+ ],
+ [
+ 1786096800000,
+ 88.34,
+ 0
+ ],
+ [
+ 1786100400000,
+ 92.7,
+ 0
+ ],
+ [
+ 1786104000000,
+ 96.06,
+ 0
+ ],
+ [
+ 1786107600000,
+ 94.22,
+ 0
+ ],
+ [
+ 1786111200000,
+ 84.1,
+ 0
+ ],
+ [
+ 1786114800000,
+ 70.39,
+ 0
+ ],
+ [
+ 1786118400000,
+ 69.18,
+ 0
+ ],
+ [
+ 1786122000000,
+ 62.49,
+ 0
+ ],
+ [
+ 1786125600000,
+ 55.5,
+ 0
+ ],
+ [
+ 1786129200000,
+ 50.43,
+ 0
+ ],
+ [
+ 1786132800000,
+ 49.01,
+ 0
+ ],
+ [
+ 1786136400000,
+ 54.17,
+ 0
+ ],
+ [
+ 1786140000000,
+ 68.33,
+ 0
+ ],
+ [
+ 1786143600000,
+ 60.15,
+ 0
+ ],
+ [
+ 1786147200000,
+ 50.27,
+ 0
+ ],
+ [
+ 1786150800000,
+ 58.94,
+ 0
+ ],
+ [
+ 1786154400000,
+ 60.17,
+ 0
+ ],
+ [
+ 1786158000000,
+ 75.92,
+ 0
+ ],
+ [
+ 1786161600000,
+ 71.82,
+ 0
+ ],
+ [
+ 1786165200000,
+ 75.26,
+ 0
+ ],
+ [
+ 1786168800000,
+ 74.26,
+ 0
+ ],
+ [
+ 1786172400000,
+ 75.49,
+ 0
+ ],
+ [
+ 1786176000000,
+ 86.36,
+ 0
+ ],
+ [
+ 1786179600000,
+ 91.47,
+ 0
+ ],
+ [
+ 1786183200000,
+ 88.58,
+ 0
+ ],
+ [
+ 1786186800000,
+ 92.89,
+ 0
+ ],
+ [
+ 1786190400000,
+ 98.29,
+ 0
+ ],
+ [
+ 1786194000000,
+ 98.26,
+ 0
+ ],
+ [
+ 1786197600000,
+ 88.14,
+ 0
+ ],
+ [
+ 1786201200000,
+ 79.67,
+ 0
+ ],
+ [
+ 1786204800000,
+ 70.68,
+ 0
+ ],
+ [
+ 1786208400000,
+ 56.52,
+ 0
+ ],
+ [
+ 1786212000000,
+ 62.72,
+ 0
+ ],
+ [
+ 1786215600000,
+ 58.56,
+ 0
+ ],
+ [
+ 1786219200000,
+ 57.74,
+ 0
+ ],
+ [
+ 1786222800000,
+ 48.82,
+ 0
+ ],
+ [
+ 1786226400000,
+ 35.52,
+ 0
+ ],
+ [
+ 1786230000000,
+ 45.58,
+ 0
+ ],
+ [
+ 1786233600000,
+ 49.52,
+ 0
+ ],
+ [
+ 1786237200000,
+ 50.97,
+ 0
+ ],
+ [
+ 1786240800000,
+ 51.92,
+ 0
+ ],
+ [
+ 1786244400000,
+ 53.02,
+ 0
+ ],
+ [
+ 1786248000000,
+ 53.66,
+ 0
+ ],
+ [
+ 1786251600000,
+ 57.03,
+ 0
+ ],
+ [
+ 1786255200000,
+ 62.79,
+ 0
+ ],
+ [
+ 1786258800000,
+ 65.32,
+ 0
+ ],
+ [
+ 1786262400000,
+ 70.29,
+ 0
+ ],
+ [
+ 1786266000000,
+ 73.01,
+ 0
+ ],
+ [
+ 1786269600000,
+ 77.52,
+ 0
+ ],
+ [
+ 1786273200000,
+ 82.6,
+ 0
+ ],
+ [
+ 1786276800000,
+ 84.89,
+ 0
+ ],
+ [
+ 1786280400000,
+ 77.66,
+ 0
+ ],
+ [
+ 1786284000000,
+ 75.99,
+ 0
+ ],
+ [
+ 1786287600000,
+ 70.76,
+ 0
+ ],
+ [
+ 1786291200000,
+ 63.41,
+ 0
+ ],
+ [
+ 1786294800000,
+ 55.72,
+ 0
+ ],
+ [
+ 1786298400000,
+ 46.19,
+ 0
+ ],
+ [
+ 1786302000000,
+ 40.14,
+ 0
+ ],
+ [
+ 1786305600000,
+ 37.07,
+ 0
+ ],
+ [
+ 1786309200000,
+ 35.97,
+ 0
+ ],
+ [
+ 1786312800000,
+ 34.79,
+ 0
+ ],
+ [
+ 1786316400000,
+ 32.07,
+ 0
+ ],
+ [
+ 1786320000000,
+ 33.77,
+ 0
+ ],
+ [
+ 1786323600000,
+ 40.06,
+ 0
+ ],
+ [
+ 1786327200000,
+ 49.36,
+ 0
+ ],
+ [
+ 1786330800000,
+ 51.37,
+ 0
+ ],
+ [
+ 1786334400000,
+ 56.26,
+ 0
+ ],
+ [
+ 1786338000000,
+ 61.11,
+ 0
+ ],
+ [
+ 1786341600000,
+ 63.12,
+ 0
+ ],
+ [
+ 1786345200000,
+ 68.17,
+ 0
+ ],
+ [
+ 1786348800000,
+ 71.62,
+ 0
+ ],
+ [
+ 1786352400000,
+ 73.96,
+ 0
+ ],
+ [
+ 1786356000000,
+ 75.77,
+ 0
+ ],
+ [
+ 1786359600000,
+ 75.46,
+ 0
+ ],
+ [
+ 1786363200000,
+ 76.26,
+ 0
+ ],
+ [
+ 1786366800000,
+ 76.79,
+ 0
+ ],
+ [
+ 1786370400000,
+ 74.48,
+ 0
+ ],
+ [
+ 1786374000000,
+ 69.1,
+ 0
+ ],
+ [
+ 1786377600000,
+ 62.42,
+ 0
+ ],
+ [
+ 1786381200000,
+ 54.7,
+ 0
+ ],
+ [
+ 1786384800000,
+ 49.56,
+ 0
+ ],
+ [
+ 1786388400000,
+ 42.92,
+ 0
+ ],
+ [
+ 1786392000000,
+ 45.14,
+ 0
+ ],
+ [
+ 1786395600000,
+ 40.94,
+ 0
+ ],
+ [
+ 1786399200000,
+ 35.87,
+ 0
+ ],
+ [
+ 1786402800000,
+ 33.29,
+ 0
+ ],
+ [
+ 1786406400000,
+ 33.15,
+ 0
+ ],
+ [
+ 1786410000000,
+ 39.13,
+ 0
+ ],
+ [
+ 1786413600000,
+ 44.15,
+ 0
+ ],
+ [
+ 1786417200000,
+ 49.5,
+ 0
+ ],
+ [
+ 1786420800000,
+ 54.88,
+ 0
+ ],
+ [
+ 1786424400000,
+ 60.31,
+ 0
+ ],
+ [
+ 1786428000000,
+ 71.25,
+ 0
+ ],
+ [
+ 1786431600000,
+ 67.31,
+ 0
+ ],
+ [
+ 1786435200000,
+ 70.28,
+ 0
+ ],
+ [
+ 1786438800000,
+ 71.96,
+ 0
+ ],
+ [
+ 1786442400000,
+ 73.26,
+ 0
+ ],
+ [
+ 1786446000000,
+ 77.47,
+ 0
+ ],
+ [
+ 1786449600000,
+ 79.98,
+ 0
+ ],
+ [
+ 1786453200000,
+ 81.69,
+ 0
+ ],
+ [
+ 1786456800000,
+ 76.7,
+ 0
+ ],
+ [
+ 1786460400000,
+ 66.54,
+ 0
+ ],
+ [
+ 1786464000000,
+ 58.2,
+ 0
+ ],
+ [
+ 1786467600000,
+ 51.8,
+ 0
+ ],
+ [
+ 1786471200000,
+ 48.06,
+ 0
+ ],
+ [
+ 1786474800000,
+ 42.2,
+ 0
+ ],
+ [
+ 1786478400000,
+ 40.94,
+ 0
+ ],
+ [
+ 1786482000000,
+ 38.18,
+ 0
+ ],
+ [
+ 1786485600000,
+ 36.43,
+ 0
+ ],
+ [
+ 1786489200000,
+ 36.33,
+ 0
+ ],
+ [
+ 1786492800000,
+ 36.33,
+ 0
+ ],
+ [
+ 1786496400000,
+ 40.86,
+ 0
+ ],
+ [
+ 1786500000000,
+ 45.6,
+ 0
+ ],
+ [
+ 1786503600000,
+ 49.89,
+ 0
+ ],
+ [
+ 1786507200000,
+ 54.86,
+ 0
+ ],
+ [
+ 1786510800000,
+ 61.57,
+ 0
+ ],
+ [
+ 1786514400000,
+ 62.99,
+ 0
+ ],
+ [
+ 1786518000000,
+ 62.36,
+ 0
+ ],
+ [
+ 1786521600000,
+ 63.65,
+ 0
+ ],
+ [
+ 1786525200000,
+ 64.76,
+ 0
+ ],
+ [
+ 1786528800000,
+ 65.33,
+ 0
+ ],
+ [
+ 1786532400000,
+ 68.22,
+ 0
+ ],
+ [
+ 1786536000000,
+ 70.46,
+ 0
+ ],
+ [
+ 1786539600000,
+ 72.27,
+ 0
+ ],
+ [
+ 1786543200000,
+ 70.24,
+ 0
+ ],
+ [
+ 1786546800000,
+ 65.5,
+ 0
+ ],
+ [
+ 1786550400000,
+ 59.83,
+ 0
+ ],
+ [
+ 1786554000000,
+ 54.37,
+ 0
+ ],
+ [
+ 1786557600000,
+ 48.02,
+ 0
+ ],
+ [
+ 1786561200000,
+ 44.03,
+ 0
+ ],
+ [
+ 1786564800000,
+ 39.51,
+ 0
+ ],
+ [
+ 1786568400000,
+ 34.56,
+ 0
+ ],
+ [
+ 1786572000000,
+ 34.57,
+ 0
+ ],
+ [
+ 1786575600000,
+ 34.29,
+ 0
+ ],
+ [
+ 1786579200000,
+ 34.67,
+ 0
+ ],
+ [
+ 1786582800000,
+ 38.22,
+ 0
+ ],
+ [
+ 1786586400000,
+ 43.33,
+ 0
+ ],
+ [
+ 1786590000000,
+ 48.89,
+ 0
+ ],
+ [
+ 1786593600000,
+ 55.88,
+ 0
+ ],
+ [
+ 1786597200000,
+ 59.76,
+ 0
+ ],
+ [
+ 1786600800000,
+ 59.24,
+ 0
+ ],
+ [
+ 1786604400000,
+ 56.5,
+ 0
+ ],
+ [
+ 1786608000000,
+ 57.58,
+ 0
+ ],
+ [
+ 1786611600000,
+ 58.72,
+ 0
+ ],
+ [
+ 1786615200000,
+ 60.66,
+ 0
+ ],
+ [
+ 1786618800000,
+ 63.76,
+ 0
+ ],
+ [
+ 1786622400000,
+ 66.98,
+ 0
+ ],
+ [
+ 1786626000000,
+ 66.28,
+ 0
+ ],
+ [
+ 1786629600000,
+ 60.46,
+ 0
+ ],
+ [
+ 1786633200000,
+ 57.5,
+ 0
+ ],
+ [
+ 1786636800000,
+ 52.15,
+ 0
+ ],
+ [
+ 1786640400000,
+ 47.34,
+ 0
+ ],
+ [
+ 1786644000000,
+ 43.54,
+ 0
+ ],
+ [
+ 1786647600000,
+ 40.4,
+ 0
+ ],
+ [
+ 1786651200000,
+ 35.88,
+ 0
+ ],
+ [
+ 1786654800000,
+ 33.76,
+ 0
+ ],
+ [
+ 1786658400000,
+ 31.41,
+ 0
+ ],
+ [
+ 1786662000000,
+ 33.8,
+ 0
+ ],
+ [
+ 1786665600000,
+ 34.13,
+ 0
+ ],
+ [
+ 1786669200000,
+ 36.05,
+ 0
+ ],
+ [
+ 1786672800000,
+ 41.94,
+ 0
+ ],
+ [
+ 1786676400000,
+ 45.99,
+ 0
+ ],
+ [
+ 1786680000000,
+ 46.73,
+ 0
+ ],
+ [
+ 1786683600000,
+ 50.33,
+ 0
+ ],
+ [
+ 1786687200000,
+ 56.67,
+ 0
+ ],
+ [
+ 1786690800000,
+ 55.21,
+ 0
+ ],
+ [
+ 1786694400000,
+ 57.46,
+ 0
+ ],
+ [
+ 1786698000000,
+ 57.31,
+ 0
+ ],
+ [
+ 1786701600000,
+ 61.02,
+ 0
+ ],
+ [
+ 1786705200000,
+ 64.04,
+ 0
+ ],
+ [
+ 1786708800000,
+ 67.45,
+ 0
+ ],
+ [
+ 1786712400000,
+ 69.14,
+ 0
+ ],
+ [
+ 1786716000000,
+ 62.59,
+ 0
+ ],
+ [
+ 1786719600000,
+ 54.9,
+ 0
+ ],
+ [
+ 1786723200000,
+ 51.74,
+ 0
+ ],
+ [
+ 1786726800000,
+ 48.68,
+ 0
+ ],
+ [
+ 1786730400000,
+ 44.72,
+ 0
+ ],
+ [
+ 1786734000000,
+ 41.81,
+ 0
+ ],
+ [
+ 1786737600000,
+ 38.11,
+ 0
+ ],
+ [
+ 1786741200000,
+ 35.24,
+ 0
+ ],
+ [
+ 1786744800000,
+ 33.2,
+ 0
+ ],
+ [
+ 1786748400000,
+ 31.68,
+ 0
+ ],
+ [
+ 1786752000000,
+ 31.82,
+ 0
+ ],
+ [
+ 1786755600000,
+ 33.72,
+ 0
+ ],
+ [
+ 1786759200000,
+ 36.04,
+ 0
+ ],
+ [
+ 1786762800000,
+ 39.67,
+ 0
+ ],
+ [
+ 1786766400000,
+ 51.08,
+ 0
+ ],
+ [
+ 1786770000000,
+ 61.2,
+ 0
+ ],
+ [
+ 1786773600000,
+ 67.13,
+ 0
+ ],
+ [
+ 1786777200000,
+ 60.63,
+ 0
+ ],
+ [
+ 1786780800000,
+ 63.97,
+ 0
+ ],
+ [
+ 1786784400000,
+ 57.5,
+ 0
+ ],
+ [
+ 1786788000000,
+ 63.33,
+ 0
+ ],
+ [
+ 1786791600000,
+ 73.03,
+ 0
+ ],
+ [
+ 1786795200000,
+ 76.31,
+ 0
+ ],
+ [
+ 1786798800000,
+ 77.73,
+ 0
+ ],
+ [
+ 1786802400000,
+ 73.76,
+ 0
+ ],
+ [
+ 1786806000000,
+ 67.67,
+ 0
+ ],
+ [
+ 1786809600000,
+ 60.29,
+ 0
+ ],
+ [
+ 1786813200000,
+ 51.49,
+ 0
+ ],
+ [
+ 1786816800000,
+ 45.16,
+ 0
+ ],
+ [
+ 1786820400000,
+ 41.25,
+ 0
+ ],
+ [
+ 1786824000000,
+ 37.24,
+ 0
+ ],
+ [
+ 1786827600000,
+ 33.7,
+ 0
+ ],
+ [
+ 1786831200000,
+ 35.04,
+ 0
+ ],
+ [
+ 1786834800000,
+ 35.82,
+ 0
+ ],
+ [
+ 1786838400000,
+ 36.94,
+ 0
+ ],
+ [
+ 1786842000000,
+ 40.34,
+ 0
+ ],
+ [
+ 1786845600000,
+ 45.05,
+ 0
+ ],
+ [
+ 1786849200000,
+ 49.75,
+ 0
+ ],
+ [
+ 1786852800000,
+ 53.91,
+ 0
+ ],
+ [
+ 1786856400000,
+ 57.86,
+ 0
+ ],
+ [
+ 1786860000000,
+ 64.74,
+ 0
+ ],
+ [
+ 1786863600000,
+ 62.0,
+ 0
+ ],
+ [
+ 1786867200000,
+ 59.63,
+ 0
+ ],
+ [
+ 1786870800000,
+ 59.22,
+ 0
+ ],
+ [
+ 1786874400000,
+ 59.02,
+ 0
+ ],
+ [
+ 1786878000000,
+ 58.15,
+ 0
+ ],
+ [
+ 1786881600000,
+ 60.13,
+ 0
+ ],
+ [
+ 1786885200000,
+ 60.85,
+ 0
+ ],
+ [
+ 1786888800000,
+ 58.94,
+ 0
+ ],
+ [
+ 1786892400000,
+ 54.05,
+ 0
+ ],
+ [
+ 1786896000000,
+ 49.84,
+ 0
+ ],
+ [
+ 1786899600000,
+ 45.85,
+ 0
+ ],
+ [
+ 1786903200000,
+ 43.24,
+ 0
+ ],
+ [
+ 1786906800000,
+ 39.6,
+ 0
+ ],
+ [
+ 1786910400000,
+ 35.12,
+ 0
+ ],
+ [
+ 1786914000000,
+ 35.7,
+ 0
+ ],
+ [
+ 1786917600000,
+ 33.65,
+ 0
+ ],
+ [
+ 1786921200000,
+ 34.97,
+ 0
+ ],
+ [
+ 1786924800000,
+ 30.66,
+ 0
+ ],
+ [
+ 1786928400000,
+ 31.86,
+ 0
+ ],
+ [
+ 1786932000000,
+ 36.62,
+ 0
+ ],
+ [
+ 1786935600000,
+ 41.11,
+ 0
+ ],
+ [
+ 1786939200000,
+ 44.61,
+ 0
+ ],
+ [
+ 1786942800000,
+ 60.27,
+ 0
+ ],
+ [
+ 1786946400000,
+ 59.7,
+ 0
+ ],
+ [
+ 1786950000000,
+ 60.16,
+ 0
+ ],
+ [
+ 1786953600000,
+ 65.65,
+ 0
+ ],
+ [
+ 1786957200000,
+ 74.56,
+ 0
+ ],
+ [
+ 1786960800000,
+ 82.55,
+ 0
+ ],
+ [
+ 1786964400000,
+ 87.15,
+ 0
+ ],
+ [
+ 1786968000000,
+ 91.26,
+ 0
+ ],
+ [
+ 1786971600000,
+ 94.63,
+ 0
+ ],
+ [
+ 1786975200000,
+ 85.62,
+ 0
+ ],
+ [
+ 1786978800000,
+ 81.73,
+ 0
+ ],
+ [
+ 1786982400000,
+ 71.31,
+ 0
+ ],
+ [
+ 1786986000000,
+ 52.68,
+ 0
+ ],
+ [
+ 1786989600000,
+ 48.19,
+ 0
+ ],
+ [
+ 1786993200000,
+ 42.96,
+ 0
+ ],
+ [
+ 1786996800000,
+ 54.31,
+ 0
+ ],
+ [
+ 1787000400000,
+ 58.6,
+ 0
+ ],
+ [
+ 1787004000000,
+ 40.53,
+ 0
+ ],
+ [
+ 1787007600000,
+ 52.04,
+ 0
+ ],
+ [
+ 1787011200000,
+ 60.53,
+ 0
+ ],
+ [
+ 1787014800000,
+ 63.54,
+ 0
+ ],
+ [
+ 1787018400000,
+ 70.34,
+ 0
+ ],
+ [
+ 1787022000000,
+ 77.21,
+ 0
+ ],
+ [
+ 1787025600000,
+ 85.49,
+ 0
+ ],
+ [
+ 1787029200000,
+ 84.72,
+ 0
+ ],
+ [
+ 1787032800000,
+ 90.79,
+ 0
+ ],
+ [
+ 1787036400000,
+ 90.44,
+ 0
+ ],
+ [
+ 1787040000000,
+ 96.85,
+ 0
+ ],
+ [
+ 1787043600000,
+ 97.65,
+ 0
+ ],
+ [
+ 1787047200000,
+ 99.14,
+ 0
+ ],
+ [
+ 1787050800000,
+ 99.69,
+ 0
+ ],
+ [
+ 1787054400000,
+ 100.05,
+ 0
+ ],
+ [
+ 1787058000000,
+ 100.0,
+ 0
+ ],
+ [
+ 1787061600000,
+ 96.36,
+ 0
+ ],
+ [
+ 1787065200000,
+ 85.38,
+ 0
+ ],
+ [
+ 1787068800000,
+ 71.16,
+ 0
+ ],
+ [
+ 1787072400000,
+ 46.9,
+ 0
+ ],
+ [
+ 1787076000000,
+ 43.13,
+ 0
+ ],
+ [
+ 1787079600000,
+ 31.95,
+ 0
+ ],
+ [
+ 1787083200000,
+ 28.55,
+ 0
+ ],
+ [
+ 1787086800000,
+ 31.31,
+ 0
+ ],
+ [
+ 1787090400000,
+ 25.26,
+ 0
+ ],
+ [
+ 1787094000000,
+ 25.45,
+ 0
+ ],
+ [
+ 1787097600000,
+ 28.89,
+ 0
+ ],
+ [
+ 1787101200000,
+ 21.87,
+ 0
+ ],
+ [
+ 1787104800000,
+ 27.02,
+ 0
+ ],
+ [
+ 1787108400000,
+ 30.26,
+ 0
+ ],
+ [
+ 1787112000000,
+ 32.4,
+ 0
+ ],
+ [
+ 1787115600000,
+ 34.8,
+ 0
+ ],
+ [
+ 1787119200000,
+ 36.56,
+ 0
+ ],
+ [
+ 1787122800000,
+ 36.53,
+ 0
+ ],
+ [
+ 1787126400000,
+ 34.71,
+ 0
+ ],
+ [
+ 1787130000000,
+ 37.52,
+ 0
+ ],
+ [
+ 1787133600000,
+ 40.62,
+ 0
+ ],
+ [
+ 1787137200000,
+ 42.24,
+ 0
+ ],
+ [
+ 1787140800000,
+ 45.96,
+ 0
+ ],
+ [
+ 1787144400000,
+ 46.98,
+ 0
+ ],
+ [
+ 1787148000000,
+ 44.03,
+ 0
+ ],
+ [
+ 1787151600000,
+ 39.37,
+ 0
+ ],
+ [
+ 1787155200000,
+ 34.47,
+ 0
+ ],
+ [
+ 1787158800000,
+ 28.38,
+ 0
+ ],
+ [
+ 1787162400000,
+ 35.01,
+ 0
+ ],
+ [
+ 1787166000000,
+ 37.24,
+ 0
+ ],
+ [
+ 1787169600000,
+ 35.08,
+ 0
+ ],
+ [
+ 1787173200000,
+ 27.68,
+ 0
+ ],
+ [
+ 1787176800000,
+ 25.5,
+ 0
+ ],
+ [
+ 1787180400000,
+ 24.91,
+ 0
+ ],
+ [
+ 1787184000000,
+ 21.48,
+ 0
+ ],
+ [
+ 1787187600000,
+ 24.89,
+ 0
+ ],
+ [
+ 1787191200000,
+ 25.91,
+ 0
+ ],
+ [
+ 1787194800000,
+ 28.95,
+ 0
+ ],
+ [
+ 1787198400000,
+ 44.14,
+ 0
+ ],
+ [
+ 1787202000000,
+ 34.39,
+ 0
+ ],
+ [
+ 1787205600000,
+ 36.13,
+ 0
+ ],
+ [
+ 1787209200000,
+ 38.8,
+ 0
+ ],
+ [
+ 1787212800000,
+ 43.81,
+ 0
+ ],
+ [
+ 1787216400000,
+ 42.62,
+ 0
+ ],
+ [
+ 1787220000000,
+ 48.6,
+ 0
+ ],
+ [
+ 1787223600000,
+ 50.38,
+ 0
+ ],
+ [
+ 1787227200000,
+ 54.06,
+ 0
+ ],
+ [
+ 1787230800000,
+ 69.12,
+ 0
+ ],
+ [
+ 1787234400000,
+ 67.92,
+ 0
+ ],
+ [
+ 1787238000000,
+ 68.94,
+ 0
+ ],
+ [
+ 1787241600000,
+ 62.8,
+ 0
+ ],
+ [
+ 1787245200000,
+ 52.48,
+ 0
+ ],
+ [
+ 1787248800000,
+ 48.67,
+ 0
+ ],
+ [
+ 1787252400000,
+ 47.5,
+ 0
+ ],
+ [
+ 1787256000000,
+ 44.86,
+ 0
+ ],
+ [
+ 1787259600000,
+ 35.66,
+ 0
+ ],
+ [
+ 1787263200000,
+ 37.85,
+ 0
+ ],
+ [
+ 1787266800000,
+ 29.5,
+ 0
+ ],
+ [
+ 1787270400000,
+ 27.68,
+ 0
+ ],
+ [
+ 1787274000000,
+ 26.69,
+ 0
+ ],
+ [
+ 1787277600000,
+ 34.05,
+ 0
+ ],
+ [
+ 1787281200000,
+ 39.18,
+ 0
+ ],
+ [
+ 1787284800000,
+ 41.62,
+ 0
+ ],
+ [
+ 1787288400000,
+ 45.66,
+ 0
+ ],
+ [
+ 1787292000000,
+ 52.0,
+ 0
+ ],
+ [
+ 1787295600000,
+ 50.11,
+ 0
+ ],
+ [
+ 1787299200000,
+ 54.64,
+ 0
+ ],
+ [
+ 1787302800000,
+ 54.55,
+ 0
+ ],
+ [
+ 1787306400000,
+ 57.99,
+ 0
+ ],
+ [
+ 1787310000000,
+ 65.24,
+ 0
+ ],
+ [
+ 1787313600000,
+ 79.83,
+ 0
+ ],
+ [
+ 1787317200000,
+ 89.71,
+ 0
+ ],
+ [
+ 1787320800000,
+ 85.66,
+ 0
+ ],
+ [
+ 1787324400000,
+ 78.96,
+ 0
+ ],
+ [
+ 1787328000000,
+ 69.97,
+ 0
+ ],
+ [
+ 1787331600000,
+ 63.26,
+ 0
+ ],
+ [
+ 1787335200000,
+ 55.74,
+ 0
+ ],
+ [
+ 1787338800000,
+ 55.65,
+ 0
+ ],
+ [
+ 1787342400000,
+ 50.01,
+ 0
+ ],
+ [
+ 1787346000000,
+ 33.37,
+ 0
+ ],
+ [
+ 1787349600000,
+ 29.06,
+ 0
+ ],
+ [
+ 1787353200000,
+ 35.52,
+ 0
+ ],
+ [
+ 1787356800000,
+ 38.97,
+ 0
+ ],
+ [
+ 1787360400000,
+ 37.97,
+ 0
+ ],
+ [
+ 1787364000000,
+ 47.04,
+ 0
+ ],
+ [
+ 1787367600000,
+ 46.06,
+ 0
+ ],
+ [
+ 1787371200000,
+ 50.1,
+ 0
+ ],
+ [
+ 1787374800000,
+ 47.83,
+ 0
+ ],
+ [
+ 1787378400000,
+ 47.56,
+ 0
+ ],
+ [
+ 1787382000000,
+ 48.31,
+ 0
+ ],
+ [
+ 1787385600000,
+ 72.74,
+ 0
+ ],
+ [
+ 1787389200000,
+ 89.35,
+ 0
+ ],
+ [
+ 1787392800000,
+ 93.65,
+ 0
+ ],
+ [
+ 1787396400000,
+ 94.48,
+ 0
+ ],
+ [
+ 1787400000000,
+ 97.31,
+ 0
+ ],
+ [
+ 1787403600000,
+ 95.87,
+ 0
+ ],
+ [
+ 1787407200000,
+ 81.64,
+ 0
+ ],
+ [
+ 1787410800000,
+ 63.41,
+ 0
+ ],
+ [
+ 1787414400000,
+ 59.98,
+ 0
+ ],
+ [
+ 1787418000000,
+ 68.28,
+ 0
+ ],
+ [
+ 1787421600000,
+ 64.72,
+ 0
+ ],
+ [
+ 1787425200000,
+ 64.73,
+ 0
+ ],
+ [
+ 1787428800000,
+ 58.78,
+ 0
+ ],
+ [
+ 1787432400000,
+ 45.9,
+ 0
+ ],
+ [
+ 1787436000000,
+ 41.72,
+ 0
+ ],
+ [
+ 1787439600000,
+ 49.15,
+ 0
+ ],
+ [
+ 1787443200000,
+ 52.38,
+ 0
+ ],
+ [
+ 1787446800000,
+ 55.62,
+ 0
+ ],
+ [
+ 1787450400000,
+ 68.78,
+ 0
+ ],
+ [
+ 1787454000000,
+ 81.32,
+ 0
+ ],
+ [
+ 1787457600000,
+ 82.18,
+ 0
+ ],
+ [
+ 1787461200000,
+ 83.3,
+ 0
+ ],
+ [
+ 1787464800000,
+ 77.28,
+ 0
+ ],
+ [
+ 1787468400000,
+ 82.42,
+ 0
+ ],
+ [
+ 1787472000000,
+ 83.61,
+ 0
+ ],
+ [
+ 1787475600000,
+ 86.51,
+ 0
+ ],
+ [
+ 1787479200000,
+ 89.47,
+ 0
+ ],
+ [
+ 1787482800000,
+ 90.16,
+ 0
+ ],
+ [
+ 1787486400000,
+ 94.8,
+ 0
+ ],
+ [
+ 1787490000000,
+ 95.2,
+ 0
+ ],
+ [
+ 1787493600000,
+ 88.92,
+ 0
+ ],
+ [
+ 1787497200000,
+ 79.97,
+ 0
+ ],
+ [
+ 1787500800000,
+ 67.0,
+ 0
+ ],
+ [
+ 1787504400000,
+ 59.22,
+ 0
+ ],
+ [
+ 1787508000000,
+ 53.26,
+ 0
+ ],
+ [
+ 1787511600000,
+ 45.54,
+ 0
+ ],
+ [
+ 1787515200000,
+ 39.69,
+ 0
+ ],
+ [
+ 1787518800000,
+ 38.14,
+ 0
+ ],
+ [
+ 1787522400000,
+ 36.28,
+ 0
+ ],
+ [
+ 1787526000000,
+ 34.63,
+ 0
+ ],
+ [
+ 1787529600000,
+ 32.62,
+ 0
+ ],
+ [
+ 1787533200000,
+ 37.14,
+ 0
+ ],
+ [
+ 1787536800000,
+ 44.94,
+ 0
+ ],
+ [
+ 1787540400000,
+ 54.67,
+ 0
+ ],
+ [
+ 1787544000000,
+ 58.34,
+ 0
+ ],
+ [
+ 1787547600000,
+ 57.3,
+ 0
+ ],
+ [
+ 1787551200000,
+ 60.82,
+ 0
+ ],
+ [
+ 1787554800000,
+ 60.53,
+ 0
+ ],
+ [
+ 1787558400000,
+ 65.0,
+ 0
+ ],
+ [
+ 1787562000000,
+ 69.04,
+ 0
+ ],
+ [
+ 1787565600000,
+ 72.78,
+ 0
+ ],
+ [
+ 1787569200000,
+ 74.53,
+ 0
+ ],
+ [
+ 1787572800000,
+ 84.6,
+ 0
+ ],
+ [
+ 1787576400000,
+ 91.4,
+ 0
+ ],
+ [
+ 1787580000000,
+ 96.17,
+ 0
+ ],
+ [
+ 1787583600000,
+ 94.98,
+ 0
+ ],
+ [
+ 1787587200000,
+ 89.86,
+ 0
+ ],
+ [
+ 1787590800000,
+ 81.79,
+ 0
+ ],
+ [
+ 1787594400000,
+ 73.04,
+ 0
+ ],
+ [
+ 1787598000000,
+ 66.25,
+ 0
+ ],
+ [
+ 1787601600000,
+ 65.2,
+ 0
+ ],
+ [
+ 1787605200000,
+ 64.98,
+ 0
+ ],
+ [
+ 1787608800000,
+ 64.32,
+ 0
+ ],
+ [
+ 1787612400000,
+ 63.51,
+ 0
+ ],
+ [
+ 1787616000000,
+ 61.8,
+ 0
+ ],
+ [
+ 1787619600000,
+ 65.06,
+ 0
+ ],
+ [
+ 1787623200000,
+ 72.35,
+ 0
+ ],
+ [
+ 1787626800000,
+ 77.23,
+ 0
+ ],
+ [
+ 1787630400000,
+ 74.29,
+ 0
+ ],
+ [
+ 1787634000000,
+ 70.55,
+ 0
+ ],
+ [
+ 1787637600000,
+ 72.1,
+ 0
+ ],
+ [
+ 1787641200000,
+ 81.85,
+ 0
+ ],
+ [
+ 1787644800000,
+ 90.29,
+ 0
+ ],
+ [
+ 1787648400000,
+ 94.63,
+ 0
+ ],
+ [
+ 1787652000000,
+ 97.69,
+ 0
+ ],
+ [
+ 1787655600000,
+ 99.87,
+ 0
+ ],
+ [
+ 1787659200000,
+ 100.05,
+ 0
+ ],
+ [
+ 1787662800000,
+ 99.86,
+ 0
+ ],
+ [
+ 1787666400000,
+ 87.3,
+ 0
+ ],
+ [
+ 1787670000000,
+ 61.08,
+ 0
+ ],
+ [
+ 1787673600000,
+ 45.05,
+ 0
+ ],
+ [
+ 1787677200000,
+ 39.46,
+ 0
+ ],
+ [
+ 1787680800000,
+ 47.7,
+ 0
+ ],
+ [
+ 1787684400000,
+ 46.92,
+ 0
+ ],
+ [
+ 1787688000000,
+ 46.89,
+ 0
+ ],
+ [
+ 1787691600000,
+ 46.22,
+ 0
+ ],
+ [
+ 1787695200000,
+ 37.13,
+ 0
+ ],
+ [
+ 1787698800000,
+ 32.57,
+ 0
+ ],
+ [
+ 1787702400000,
+ 32.83,
+ 0
+ ],
+ [
+ 1787706000000,
+ 38.49,
+ 0
+ ],
+ [
+ 1787709600000,
+ 49.59,
+ 0
+ ],
+ [
+ 1787713200000,
+ 55.78,
+ 0
+ ],
+ [
+ 1787716800000,
+ 64.24,
+ 0
+ ],
+ [
+ 1787720400000,
+ 69.24,
+ 0
+ ],
+ [
+ 1787724000000,
+ 77.44,
+ 0
+ ],
+ [
+ 1787727600000,
+ 78.82,
+ 0
+ ],
+ [
+ 1787731200000,
+ 52.66,
+ 0
+ ],
+ [
+ 1787734800000,
+ 49.15,
+ 0
+ ],
+ [
+ 1787738400000,
+ 59.29,
+ 0
+ ],
+ [
+ 1787742000000,
+ 66.36,
+ 0
+ ],
+ [
+ 1787745600000,
+ 82.58,
+ 0
+ ],
+ [
+ 1787749200000,
+ 86.67,
+ 0
+ ],
+ [
+ 1787752800000,
+ 65.1,
+ 0
+ ],
+ [
+ 1787756400000,
+ 56.91,
+ 0
+ ],
+ [
+ 1787760000000,
+ 56.78,
+ 0
+ ],
+ [
+ 1787763600000,
+ 55.59,
+ 0
+ ],
+ [
+ 1787767200000,
+ 57.6,
+ 0
+ ],
+ [
+ 1787770800000,
+ 63.0,
+ 0
+ ],
+ [
+ 1787774400000,
+ 55.41,
+ 0
+ ],
+ [
+ 1787778000000,
+ 57.27,
+ 0
+ ],
+ [
+ 1787781600000,
+ 52.93,
+ 0
+ ],
+ [
+ 1787785200000,
+ 46.61,
+ 0
+ ]
+ ]
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Code-Evap Type.Total.~1Day.1Day.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Code-Evap Type.Total.~1Day.1Day.Ccp-Rev.json
index 277da3cbd..89897b66b 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Code-Evap Type.Total.~1Day.1Day.Ccp-Rev.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Code-Evap Type.Total.~1Day.1Day.Ccp-Rev.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T12:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T12:00:00+00:00",
+ "end": "2026-08-26T12:00:00+00:00",
"interval": "PT0S",
"interval-offset": -2147483648,
"name": "EUFA.Code-Evap Type.Total.~1Day.1Day.Ccp-Rev",
"office-id": "SWT",
- "page": "MTc4Mzk0NDAwMDAwMHx8MTR8fDMwMDAwMA==",
+ "page": "MTc4NjM2MzIwMDAwMHx8MTR8fDMwMDAwMA==",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 64,
+ "total": 87,
"units": "n/a",
"value-columns": [
{
@@ -348,6 +348,121 @@
1785758400000,
5.0,
0
+ ],
+ [
+ 1785844800000,
+ 5.0,
+ 0
+ ],
+ [
+ 1785931200000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786017600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786104000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786190400000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786276800000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786363200000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786449600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786536000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786622400000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786708800000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786795200000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786881600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786968000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787054400000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787140800000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787227200000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787313600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787400000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787486400000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787572800000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787659200000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787745600000,
+ 5.0,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Dir-Wind.Inst.1Hour.0.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Dir-Wind.Inst.1Hour.0.Ccp-Rev.json
index 3bfebc1c8..646d1ab45 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Dir-Wind.Inst.1Hour.0.Ccp-Rev.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Dir-Wind.Inst.1Hour.0.Ccp-Rev.json
@@ -1,7 +1,7 @@
{
"begin": "2026-06-01T00:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T15:00:00+00:00",
+ "end": "2026-08-26T23:00:00+00:00",
"interval": "PT1H",
"interval-offset": 0,
"name": "EUFA.Dir-Wind.Inst.1Hour.0.Ccp-Rev",
@@ -9,7 +9,7 @@
"page": "MTc4MDI3MjAwMDAwMHx8MzM3fHwzMDAwMDA=",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 1528,
+ "total": 2088,
"units": "deg",
"value-columns": [
{
@@ -7668,6 +7668,2806 @@
1785769200000,
146.4,
0
+ ],
+ [
+ 1785772800000,
+ 151.9,
+ 0
+ ],
+ [
+ 1785776400000,
+ 139.1,
+ 0
+ ],
+ [
+ 1785780000000,
+ 134.2,
+ 0
+ ],
+ [
+ 1785783600000,
+ 133.1,
+ 0
+ ],
+ [
+ 1785787200000,
+ 132.4,
+ 0
+ ],
+ [
+ 1785790800000,
+ 138.0,
+ 0
+ ],
+ [
+ 1785794400000,
+ 133.9,
+ 0
+ ],
+ [
+ 1785798000000,
+ 140.0,
+ 0
+ ],
+ [
+ 1785801600000,
+ 141.8,
+ 0
+ ],
+ [
+ 1785805200000,
+ 135.8,
+ 0
+ ],
+ [
+ 1785808800000,
+ 153.7,
+ 0
+ ],
+ [
+ 1785812400000,
+ 158.1,
+ 0
+ ],
+ [
+ 1785816000000,
+ 158.4,
+ 0
+ ],
+ [
+ 1785819600000,
+ 156.1,
+ 0
+ ],
+ [
+ 1785823200000,
+ 162.4,
+ 0
+ ],
+ [
+ 1785826800000,
+ 160.7,
+ 0
+ ],
+ [
+ 1785830400000,
+ 160.5,
+ 0
+ ],
+ [
+ 1785834000000,
+ 165.5,
+ 0
+ ],
+ [
+ 1785837600000,
+ 171.8,
+ 0
+ ],
+ [
+ 1785841200000,
+ 178.4,
+ 0
+ ],
+ [
+ 1785844800000,
+ 174.0,
+ 0
+ ],
+ [
+ 1785848400000,
+ 168.4,
+ 0
+ ],
+ [
+ 1785852000000,
+ 152.1,
+ 0
+ ],
+ [
+ 1785855600000,
+ 134.4,
+ 0
+ ],
+ [
+ 1785859200000,
+ 132.8,
+ 0
+ ],
+ [
+ 1785862800000,
+ 138.6,
+ 0
+ ],
+ [
+ 1785866400000,
+ 134.0,
+ 0
+ ],
+ [
+ 1785870000000,
+ 166.4,
+ 0
+ ],
+ [
+ 1785873600000,
+ 133.1,
+ 0
+ ],
+ [
+ 1785877200000,
+ 139.6,
+ 0
+ ],
+ [
+ 1785880800000,
+ 138.0,
+ 0
+ ],
+ [
+ 1785884400000,
+ 135.0,
+ 0
+ ],
+ [
+ 1785888000000,
+ 134.0,
+ 0
+ ],
+ [
+ 1785891600000,
+ 134.8,
+ 0
+ ],
+ [
+ 1785895200000,
+ 147.2,
+ 0
+ ],
+ [
+ 1785898800000,
+ 144.1,
+ 0
+ ],
+ [
+ 1785902400000,
+ 174.0,
+ 0
+ ],
+ [
+ 1785906000000,
+ 156.0,
+ 0
+ ],
+ [
+ 1785909600000,
+ 152.4,
+ 0
+ ],
+ [
+ 1785913200000,
+ 160.0,
+ 0
+ ],
+ [
+ 1785916800000,
+ 157.2,
+ 0
+ ],
+ [
+ 1785920400000,
+ 158.1,
+ 0
+ ],
+ [
+ 1785924000000,
+ 158.6,
+ 0
+ ],
+ [
+ 1785927600000,
+ 165.5,
+ 0
+ ],
+ [
+ 1785931200000,
+ 172.9,
+ 0
+ ],
+ [
+ 1785934800000,
+ 170.1,
+ 0
+ ],
+ [
+ 1785938400000,
+ 142.9,
+ 0
+ ],
+ [
+ 1785942000000,
+ 134.5,
+ 0
+ ],
+ [
+ 1785945600000,
+ 143.1,
+ 0
+ ],
+ [
+ 1785949200000,
+ 241.7,
+ 0
+ ],
+ [
+ 1785952800000,
+ 244.6,
+ 0
+ ],
+ [
+ 1785956400000,
+ 243.3,
+ 0
+ ],
+ [
+ 1785960000000,
+ 272.8,
+ 0
+ ],
+ [
+ 1785963600000,
+ 346.7,
+ 0
+ ],
+ [
+ 1785967200000,
+ 182.3,
+ 0
+ ],
+ [
+ 1785970800000,
+ 178.1,
+ 0
+ ],
+ [
+ 1785974400000,
+ 151.1,
+ 0
+ ],
+ [
+ 1785978000000,
+ 151.0,
+ 0
+ ],
+ [
+ 1785981600000,
+ 162.1,
+ 0
+ ],
+ [
+ 1785985200000,
+ 146.5,
+ 0
+ ],
+ [
+ 1785988800000,
+ 142.7,
+ 0
+ ],
+ [
+ 1785992400000,
+ 155.5,
+ 0
+ ],
+ [
+ 1785996000000,
+ 156.0,
+ 0
+ ],
+ [
+ 1785999600000,
+ 162.1,
+ 0
+ ],
+ [
+ 1786003200000,
+ 168.4,
+ 0
+ ],
+ [
+ 1786006800000,
+ 172.5,
+ 0
+ ],
+ [
+ 1786010400000,
+ 170.5,
+ 0
+ ],
+ [
+ 1786014000000,
+ 162.7,
+ 0
+ ],
+ [
+ 1786017600000,
+ 173.5,
+ 0
+ ],
+ [
+ 1786021200000,
+ 207.0,
+ 0
+ ],
+ [
+ 1786024800000,
+ 213.2,
+ 0
+ ],
+ [
+ 1786028400000,
+ 267.7,
+ 0
+ ],
+ [
+ 1786032000000,
+ 301.1,
+ 0
+ ],
+ [
+ 1786035600000,
+ 304.5,
+ 0
+ ],
+ [
+ 1786039200000,
+ 341.3,
+ 0
+ ],
+ [
+ 1786042800000,
+ 340.9,
+ 0
+ ],
+ [
+ 1786046400000,
+ 351.5,
+ 0
+ ],
+ [
+ 1786050000000,
+ 336.2,
+ 0
+ ],
+ [
+ 1786053600000,
+ 300.6,
+ 0
+ ],
+ [
+ 1786057200000,
+ 332.8,
+ 0
+ ],
+ [
+ 1786060800000,
+ 258.0,
+ 0
+ ],
+ [
+ 1786064400000,
+ 232.7,
+ 0
+ ],
+ [
+ 1786068000000,
+ 155.4,
+ 0
+ ],
+ [
+ 1786071600000,
+ 161.9,
+ 0
+ ],
+ [
+ 1786075200000,
+ 150.2,
+ 0
+ ],
+ [
+ 1786078800000,
+ 143.0,
+ 0
+ ],
+ [
+ 1786082400000,
+ 157.6,
+ 0
+ ],
+ [
+ 1786086000000,
+ 150.7,
+ 0
+ ],
+ [
+ 1786089600000,
+ 150.4,
+ 0
+ ],
+ [
+ 1786093200000,
+ 142.5,
+ 0
+ ],
+ [
+ 1786096800000,
+ 148.8,
+ 0
+ ],
+ [
+ 1786100400000,
+ 162.2,
+ 0
+ ],
+ [
+ 1786104000000,
+ 167.8,
+ 0
+ ],
+ [
+ 1786107600000,
+ 151.5,
+ 0
+ ],
+ [
+ 1786111200000,
+ 148.7,
+ 0
+ ],
+ [
+ 1786114800000,
+ 200.6,
+ 0
+ ],
+ [
+ 1786118400000,
+ 348.4,
+ 0
+ ],
+ [
+ 1786122000000,
+ 349.5,
+ 0
+ ],
+ [
+ 1786125600000,
+ 356.3,
+ 0
+ ],
+ [
+ 1786129200000,
+ 352.4,
+ 0
+ ],
+ [
+ 1786132800000,
+ 348.5,
+ 0
+ ],
+ [
+ 1786136400000,
+ 339.2,
+ 0
+ ],
+ [
+ 1786140000000,
+ 329.3,
+ 0
+ ],
+ [
+ 1786143600000,
+ 303.0,
+ 0
+ ],
+ [
+ 1786147200000,
+ 131.6,
+ 0
+ ],
+ [
+ 1786150800000,
+ 20.8,
+ 0
+ ],
+ [
+ 1786154400000,
+ 20.9,
+ 0
+ ],
+ [
+ 1786158000000,
+ 153.1,
+ 0
+ ],
+ [
+ 1786161600000,
+ 139.6,
+ 0
+ ],
+ [
+ 1786165200000,
+ 147.5,
+ 0
+ ],
+ [
+ 1786168800000,
+ 159.3,
+ 0
+ ],
+ [
+ 1786172400000,
+ 153.3,
+ 0
+ ],
+ [
+ 1786176000000,
+ 178.4,
+ 0
+ ],
+ [
+ 1786179600000,
+ 159.7,
+ 0
+ ],
+ [
+ 1786183200000,
+ 159.3,
+ 0
+ ],
+ [
+ 1786186800000,
+ 158.3,
+ 0
+ ],
+ [
+ 1786190400000,
+ 153.2,
+ 0
+ ],
+ [
+ 1786194000000,
+ 148.5,
+ 0
+ ],
+ [
+ 1786197600000,
+ 138.6,
+ 0
+ ],
+ [
+ 1786201200000,
+ 133.3,
+ 0
+ ],
+ [
+ 1786204800000,
+ 144.8,
+ 0
+ ],
+ [
+ 1786208400000,
+ 269.1,
+ 0
+ ],
+ [
+ 1786212000000,
+ 353.7,
+ 0
+ ],
+ [
+ 1786215600000,
+ 352.1,
+ 0
+ ],
+ [
+ 1786219200000,
+ 352.0,
+ 0
+ ],
+ [
+ 1786222800000,
+ 349.9,
+ 0
+ ],
+ [
+ 1786226400000,
+ 352.6,
+ 0
+ ],
+ [
+ 1786230000000,
+ 216.7,
+ 0
+ ],
+ [
+ 1786233600000,
+ 211.1,
+ 0
+ ],
+ [
+ 1786237200000,
+ 186.6,
+ 0
+ ],
+ [
+ 1786240800000,
+ 164.8,
+ 0
+ ],
+ [
+ 1786244400000,
+ 172.1,
+ 0
+ ],
+ [
+ 1786248000000,
+ 181.0,
+ 0
+ ],
+ [
+ 1786251600000,
+ 163.0,
+ 0
+ ],
+ [
+ 1786255200000,
+ 167.5,
+ 0
+ ],
+ [
+ 1786258800000,
+ 155.2,
+ 0
+ ],
+ [
+ 1786262400000,
+ 152.8,
+ 0
+ ],
+ [
+ 1786266000000,
+ 162.7,
+ 0
+ ],
+ [
+ 1786269600000,
+ 153.5,
+ 0
+ ],
+ [
+ 1786273200000,
+ 159.2,
+ 0
+ ],
+ [
+ 1786276800000,
+ 140.4,
+ 0
+ ],
+ [
+ 1786280400000,
+ 125.4,
+ 0
+ ],
+ [
+ 1786284000000,
+ 137.1,
+ 0
+ ],
+ [
+ 1786287600000,
+ 170.6,
+ 0
+ ],
+ [
+ 1786291200000,
+ 230.7,
+ 0
+ ],
+ [
+ 1786294800000,
+ 250.3,
+ 0
+ ],
+ [
+ 1786298400000,
+ 267.2,
+ 0
+ ],
+ [
+ 1786302000000,
+ 267.4,
+ 0
+ ],
+ [
+ 1786305600000,
+ 199.4,
+ 0
+ ],
+ [
+ 1786309200000,
+ 213.7,
+ 0
+ ],
+ [
+ 1786312800000,
+ 177.6,
+ 0
+ ],
+ [
+ 1786316400000,
+ 172.3,
+ 0
+ ],
+ [
+ 1786320000000,
+ 189.4,
+ 0
+ ],
+ [
+ 1786323600000,
+ 165.6,
+ 0
+ ],
+ [
+ 1786327200000,
+ 166.0,
+ 0
+ ],
+ [
+ 1786330800000,
+ 176.1,
+ 0
+ ],
+ [
+ 1786334400000,
+ 162.2,
+ 0
+ ],
+ [
+ 1786338000000,
+ 172.3,
+ 0
+ ],
+ [
+ 1786341600000,
+ 171.4,
+ 0
+ ],
+ [
+ 1786345200000,
+ 161.7,
+ 0
+ ],
+ [
+ 1786348800000,
+ 183.2,
+ 0
+ ],
+ [
+ 1786352400000,
+ 194.6,
+ 0
+ ],
+ [
+ 1786356000000,
+ 196.6,
+ 0
+ ],
+ [
+ 1786359600000,
+ 193.7,
+ 0
+ ],
+ [
+ 1786363200000,
+ 157.1,
+ 0
+ ],
+ [
+ 1786366800000,
+ 199.0,
+ 0
+ ],
+ [
+ 1786370400000,
+ 217.0,
+ 0
+ ],
+ [
+ 1786374000000,
+ 250.1,
+ 0
+ ],
+ [
+ 1786377600000,
+ 244.7,
+ 0
+ ],
+ [
+ 1786381200000,
+ 242.1,
+ 0
+ ],
+ [
+ 1786384800000,
+ 265.0,
+ 0
+ ],
+ [
+ 1786388400000,
+ 208.9,
+ 0
+ ],
+ [
+ 1786392000000,
+ 305.3,
+ 0
+ ],
+ [
+ 1786395600000,
+ 225.5,
+ 0
+ ],
+ [
+ 1786399200000,
+ 191.3,
+ 0
+ ],
+ [
+ 1786402800000,
+ 202.4,
+ 0
+ ],
+ [
+ 1786406400000,
+ 214.9,
+ 0
+ ],
+ [
+ 1786410000000,
+ 187.3,
+ 0
+ ],
+ [
+ 1786413600000,
+ 179.5,
+ 0
+ ],
+ [
+ 1786417200000,
+ 168.1,
+ 0
+ ],
+ [
+ 1786420800000,
+ 156.4,
+ 0
+ ],
+ [
+ 1786424400000,
+ 151.9,
+ 0
+ ],
+ [
+ 1786428000000,
+ 156.3,
+ 0
+ ],
+ [
+ 1786431600000,
+ 145.6,
+ 0
+ ],
+ [
+ 1786435200000,
+ 150.3,
+ 0
+ ],
+ [
+ 1786438800000,
+ 175.1,
+ 0
+ ],
+ [
+ 1786442400000,
+ 202.9,
+ 0
+ ],
+ [
+ 1786446000000,
+ 205.9,
+ 0
+ ],
+ [
+ 1786449600000,
+ 178.6,
+ 0
+ ],
+ [
+ 1786453200000,
+ 164.8,
+ 0
+ ],
+ [
+ 1786456800000,
+ 196.6,
+ 0
+ ],
+ [
+ 1786460400000,
+ 237.9,
+ 0
+ ],
+ [
+ 1786464000000,
+ 226.3,
+ 0
+ ],
+ [
+ 1786467600000,
+ 270.4,
+ 0
+ ],
+ [
+ 1786471200000,
+ 284.9,
+ 0
+ ],
+ [
+ 1786474800000,
+ 264.1,
+ 0
+ ],
+ [
+ 1786478400000,
+ 277.5,
+ 0
+ ],
+ [
+ 1786482000000,
+ 244.9,
+ 0
+ ],
+ [
+ 1786485600000,
+ 222.5,
+ 0
+ ],
+ [
+ 1786489200000,
+ 224.0,
+ 0
+ ],
+ [
+ 1786492800000,
+ 243.2,
+ 0
+ ],
+ [
+ 1786496400000,
+ 205.1,
+ 0
+ ],
+ [
+ 1786500000000,
+ 183.3,
+ 0
+ ],
+ [
+ 1786503600000,
+ 173.4,
+ 0
+ ],
+ [
+ 1786507200000,
+ 176.2,
+ 0
+ ],
+ [
+ 1786510800000,
+ 155.0,
+ 0
+ ],
+ [
+ 1786514400000,
+ 152.1,
+ 0
+ ],
+ [
+ 1786518000000,
+ 149.4,
+ 0
+ ],
+ [
+ 1786521600000,
+ 146.9,
+ 0
+ ],
+ [
+ 1786525200000,
+ 149.5,
+ 0
+ ],
+ [
+ 1786528800000,
+ 168.7,
+ 0
+ ],
+ [
+ 1786532400000,
+ 156.7,
+ 0
+ ],
+ [
+ 1786536000000,
+ 148.9,
+ 0
+ ],
+ [
+ 1786539600000,
+ 143.7,
+ 0
+ ],
+ [
+ 1786543200000,
+ 201.9,
+ 0
+ ],
+ [
+ 1786546800000,
+ 220.8,
+ 0
+ ],
+ [
+ 1786550400000,
+ 237.0,
+ 0
+ ],
+ [
+ 1786554000000,
+ 252.9,
+ 0
+ ],
+ [
+ 1786557600000,
+ 236.0,
+ 0
+ ],
+ [
+ 1786561200000,
+ 251.8,
+ 0
+ ],
+ [
+ 1786564800000,
+ 233.8,
+ 0
+ ],
+ [
+ 1786568400000,
+ 247.8,
+ 0
+ ],
+ [
+ 1786572000000,
+ 248.3,
+ 0
+ ],
+ [
+ 1786575600000,
+ 235.5,
+ 0
+ ],
+ [
+ 1786579200000,
+ 228.4,
+ 0
+ ],
+ [
+ 1786582800000,
+ 198.5,
+ 0
+ ],
+ [
+ 1786586400000,
+ 183.0,
+ 0
+ ],
+ [
+ 1786590000000,
+ 163.9,
+ 0
+ ],
+ [
+ 1786593600000,
+ 156.0,
+ 0
+ ],
+ [
+ 1786597200000,
+ 160.9,
+ 0
+ ],
+ [
+ 1786600800000,
+ 148.2,
+ 0
+ ],
+ [
+ 1786604400000,
+ 151.8,
+ 0
+ ],
+ [
+ 1786608000000,
+ 164.8,
+ 0
+ ],
+ [
+ 1786611600000,
+ 158.4,
+ 0
+ ],
+ [
+ 1786615200000,
+ 172.2,
+ 0
+ ],
+ [
+ 1786618800000,
+ 171.9,
+ 0
+ ],
+ [
+ 1786622400000,
+ 160.1,
+ 0
+ ],
+ [
+ 1786626000000,
+ 174.4,
+ 0
+ ],
+ [
+ 1786629600000,
+ 206.1,
+ 0
+ ],
+ [
+ 1786633200000,
+ 236.0,
+ 0
+ ],
+ [
+ 1786636800000,
+ 232.6,
+ 0
+ ],
+ [
+ 1786640400000,
+ 241.5,
+ 0
+ ],
+ [
+ 1786644000000,
+ 243.4,
+ 0
+ ],
+ [
+ 1786647600000,
+ 218.7,
+ 0
+ ],
+ [
+ 1786651200000,
+ 230.4,
+ 0
+ ],
+ [
+ 1786654800000,
+ 199.0,
+ 0
+ ],
+ [
+ 1786658400000,
+ 216.2,
+ 0
+ ],
+ [
+ 1786662000000,
+ 202.3,
+ 0
+ ],
+ [
+ 1786665600000,
+ 202.3,
+ 0
+ ],
+ [
+ 1786669200000,
+ 190.7,
+ 0
+ ],
+ [
+ 1786672800000,
+ 170.8,
+ 0
+ ],
+ [
+ 1786676400000,
+ 163.2,
+ 0
+ ],
+ [
+ 1786680000000,
+ 155.3,
+ 0
+ ],
+ [
+ 1786683600000,
+ 147.0,
+ 0
+ ],
+ [
+ 1786687200000,
+ 161.2,
+ 0
+ ],
+ [
+ 1786690800000,
+ 151.7,
+ 0
+ ],
+ [
+ 1786694400000,
+ 166.4,
+ 0
+ ],
+ [
+ 1786698000000,
+ 192.6,
+ 0
+ ],
+ [
+ 1786701600000,
+ 199.0,
+ 0
+ ],
+ [
+ 1786705200000,
+ 194.5,
+ 0
+ ],
+ [
+ 1786708800000,
+ 196.2,
+ 0
+ ],
+ [
+ 1786712400000,
+ 206.0,
+ 0
+ ],
+ [
+ 1786716000000,
+ 217.6,
+ 0
+ ],
+ [
+ 1786719600000,
+ 242.5,
+ 0
+ ],
+ [
+ 1786723200000,
+ 262.5,
+ 0
+ ],
+ [
+ 1786726800000,
+ 246.6,
+ 0
+ ],
+ [
+ 1786730400000,
+ 249.0,
+ 0
+ ],
+ [
+ 1786734000000,
+ 237.2,
+ 0
+ ],
+ [
+ 1786737600000,
+ 216.8,
+ 0
+ ],
+ [
+ 1786741200000,
+ 220.1,
+ 0
+ ],
+ [
+ 1786744800000,
+ 211.9,
+ 0
+ ],
+ [
+ 1786748400000,
+ 203.0,
+ 0
+ ],
+ [
+ 1786752000000,
+ 194.9,
+ 0
+ ],
+ [
+ 1786755600000,
+ 196.4,
+ 0
+ ],
+ [
+ 1786759200000,
+ 189.8,
+ 0
+ ],
+ [
+ 1786762800000,
+ 167.6,
+ 0
+ ],
+ [
+ 1786766400000,
+ 164.0,
+ 0
+ ],
+ [
+ 1786770000000,
+ 164.5,
+ 0
+ ],
+ [
+ 1786773600000,
+ 156.1,
+ 0
+ ],
+ [
+ 1786777200000,
+ 154.2,
+ 0
+ ],
+ [
+ 1786780800000,
+ 154.3,
+ 0
+ ],
+ [
+ 1786784400000,
+ 195.7,
+ 0
+ ],
+ [
+ 1786788000000,
+ 163.6,
+ 0
+ ],
+ [
+ 1786791600000,
+ 163.8,
+ 0
+ ],
+ [
+ 1786795200000,
+ 159.0,
+ 0
+ ],
+ [
+ 1786798800000,
+ 161.9,
+ 0
+ ],
+ [
+ 1786802400000,
+ 201.3,
+ 0
+ ],
+ [
+ 1786806000000,
+ 242.5,
+ 0
+ ],
+ [
+ 1786809600000,
+ 254.3,
+ 0
+ ],
+ [
+ 1786813200000,
+ 245.5,
+ 0
+ ],
+ [
+ 1786816800000,
+ 223.9,
+ 0
+ ],
+ [
+ 1786820400000,
+ 228.3,
+ 0
+ ],
+ [
+ 1786824000000,
+ 204.8,
+ 0
+ ],
+ [
+ 1786827600000,
+ 223.9,
+ 0
+ ],
+ [
+ 1786831200000,
+ 198.4,
+ 0
+ ],
+ [
+ 1786834800000,
+ 210.2,
+ 0
+ ],
+ [
+ 1786838400000,
+ 209.0,
+ 0
+ ],
+ [
+ 1786842000000,
+ 200.3,
+ 0
+ ],
+ [
+ 1786845600000,
+ 188.2,
+ 0
+ ],
+ [
+ 1786849200000,
+ 175.6,
+ 0
+ ],
+ [
+ 1786852800000,
+ 166.0,
+ 0
+ ],
+ [
+ 1786856400000,
+ 163.3,
+ 0
+ ],
+ [
+ 1786860000000,
+ 154.0,
+ 0
+ ],
+ [
+ 1786863600000,
+ 148.7,
+ 0
+ ],
+ [
+ 1786867200000,
+ 148.7,
+ 0
+ ],
+ [
+ 1786870800000,
+ 158.6,
+ 0
+ ],
+ [
+ 1786874400000,
+ 137.3,
+ 0
+ ],
+ [
+ 1786878000000,
+ 163.6,
+ 0
+ ],
+ [
+ 1786881600000,
+ 190.9,
+ 0
+ ],
+ [
+ 1786885200000,
+ 216.3,
+ 0
+ ],
+ [
+ 1786888800000,
+ 233.4,
+ 0
+ ],
+ [
+ 1786892400000,
+ 240.9,
+ 0
+ ],
+ [
+ 1786896000000,
+ 269.3,
+ 0
+ ],
+ [
+ 1786899600000,
+ 273.5,
+ 0
+ ],
+ [
+ 1786903200000,
+ 295.0,
+ 0
+ ],
+ [
+ 1786906800000,
+ 297.3,
+ 0
+ ],
+ [
+ 1786910400000,
+ 301.5,
+ 0
+ ],
+ [
+ 1786914000000,
+ 316.1,
+ 0
+ ],
+ [
+ 1786917600000,
+ 314.4,
+ 0
+ ],
+ [
+ 1786921200000,
+ 316.6,
+ 0
+ ],
+ [
+ 1786924800000,
+ 272.9,
+ 0
+ ],
+ [
+ 1786928400000,
+ 271.3,
+ 0
+ ],
+ [
+ 1786932000000,
+ 286.6,
+ 0
+ ],
+ [
+ 1786935600000,
+ 287.2,
+ 0
+ ],
+ [
+ 1786939200000,
+ 248.3,
+ 0
+ ],
+ [
+ 1786942800000,
+ 344.2,
+ 0
+ ],
+ [
+ 1786946400000,
+ 315.6,
+ 0
+ ],
+ [
+ 1786950000000,
+ 356.2,
+ 0
+ ],
+ [
+ 1786953600000,
+ 356.3,
+ 0
+ ],
+ [
+ 1786957200000,
+ 5.4,
+ 0
+ ],
+ [
+ 1786960800000,
+ 202.9,
+ 0
+ ],
+ [
+ 1786964400000,
+ 73.7,
+ 0
+ ],
+ [
+ 1786968000000,
+ 69.5,
+ 0
+ ],
+ [
+ 1786971600000,
+ 149.0,
+ 0
+ ],
+ [
+ 1786975200000,
+ 144.6,
+ 0
+ ],
+ [
+ 1786978800000,
+ 359.5,
+ 0
+ ],
+ [
+ 1786982400000,
+ 18.7,
+ 0
+ ],
+ [
+ 1786986000000,
+ 37.3,
+ 0
+ ],
+ [
+ 1786989600000,
+ 136.5,
+ 0
+ ],
+ [
+ 1786993200000,
+ 152.7,
+ 0
+ ],
+ [
+ 1786996800000,
+ 145.7,
+ 0
+ ],
+ [
+ 1787000400000,
+ 11.2,
+ 0
+ ],
+ [
+ 1787004000000,
+ 5.4,
+ 0
+ ],
+ [
+ 1787007600000,
+ 9.3,
+ 0
+ ],
+ [
+ 1787011200000,
+ 9.6,
+ 0
+ ],
+ [
+ 1787014800000,
+ 10.9,
+ 0
+ ],
+ [
+ 1787018400000,
+ 11.3,
+ 0
+ ],
+ [
+ 1787022000000,
+ 166.7,
+ 0
+ ],
+ [
+ 1787025600000,
+ 152.4,
+ 0
+ ],
+ [
+ 1787029200000,
+ 120.1,
+ 0
+ ],
+ [
+ 1787032800000,
+ 124.8,
+ 0
+ ],
+ [
+ 1787036400000,
+ 91.7,
+ 0
+ ],
+ [
+ 1787040000000,
+ 145.3,
+ 0
+ ],
+ [
+ 1787043600000,
+ 137.6,
+ 0
+ ],
+ [
+ 1787047200000,
+ 136.2,
+ 0
+ ],
+ [
+ 1787050800000,
+ 151.3,
+ 0
+ ],
+ [
+ 1787054400000,
+ 161.4,
+ 0
+ ],
+ [
+ 1787058000000,
+ 164.0,
+ 0
+ ],
+ [
+ 1787061600000,
+ 155.5,
+ 0
+ ],
+ [
+ 1787065200000,
+ 138.9,
+ 0
+ ],
+ [
+ 1787068800000,
+ 139.8,
+ 0
+ ],
+ [
+ 1787072400000,
+ 23.5,
+ 0
+ ],
+ [
+ 1787076000000,
+ 352.9,
+ 0
+ ],
+ [
+ 1787079600000,
+ 354.8,
+ 0
+ ],
+ [
+ 1787083200000,
+ 354.6,
+ 0
+ ],
+ [
+ 1787086800000,
+ 346.0,
+ 0
+ ],
+ [
+ 1787090400000,
+ 326.4,
+ 0
+ ],
+ [
+ 1787094000000,
+ 329.9,
+ 0
+ ],
+ [
+ 1787097600000,
+ 313.9,
+ 0
+ ],
+ [
+ 1787101200000,
+ 232.8,
+ 0
+ ],
+ [
+ 1787104800000,
+ 190.3,
+ 0
+ ],
+ [
+ 1787108400000,
+ 185.5,
+ 0
+ ],
+ [
+ 1787112000000,
+ 206.0,
+ 0
+ ],
+ [
+ 1787115600000,
+ 204.7,
+ 0
+ ],
+ [
+ 1787119200000,
+ 203.4,
+ 0
+ ],
+ [
+ 1787122800000,
+ 175.1,
+ 0
+ ],
+ [
+ 1787126400000,
+ 164.5,
+ 0
+ ],
+ [
+ 1787130000000,
+ 154.2,
+ 0
+ ],
+ [
+ 1787133600000,
+ 190.3,
+ 0
+ ],
+ [
+ 1787137200000,
+ 242.7,
+ 0
+ ],
+ [
+ 1787140800000,
+ 268.6,
+ 0
+ ],
+ [
+ 1787144400000,
+ 294.8,
+ 0
+ ],
+ [
+ 1787148000000,
+ 279.3,
+ 0
+ ],
+ [
+ 1787151600000,
+ 275.7,
+ 0
+ ],
+ [
+ 1787155200000,
+ 280.7,
+ 0
+ ],
+ [
+ 1787158800000,
+ 277.0,
+ 0
+ ],
+ [
+ 1787162400000,
+ 329.4,
+ 0
+ ],
+ [
+ 1787166000000,
+ 342.3,
+ 0
+ ],
+ [
+ 1787169600000,
+ 344.9,
+ 0
+ ],
+ [
+ 1787173200000,
+ 330.3,
+ 0
+ ],
+ [
+ 1787176800000,
+ 324.7,
+ 0
+ ],
+ [
+ 1787180400000,
+ 309.4,
+ 0
+ ],
+ [
+ 1787184000000,
+ 269.8,
+ 0
+ ],
+ [
+ 1787187600000,
+ 255.9,
+ 0
+ ],
+ [
+ 1787191200000,
+ 225.9,
+ 0
+ ],
+ [
+ 1787194800000,
+ 250.2,
+ 0
+ ],
+ [
+ 1787198400000,
+ 336.1,
+ 0
+ ],
+ [
+ 1787202000000,
+ 272.3,
+ 0
+ ],
+ [
+ 1787205600000,
+ 232.0,
+ 0
+ ],
+ [
+ 1787209200000,
+ 226.7,
+ 0
+ ],
+ [
+ 1787212800000,
+ 192.3,
+ 0
+ ],
+ [
+ 1787216400000,
+ 157.7,
+ 0
+ ],
+ [
+ 1787220000000,
+ 326.0,
+ 0
+ ],
+ [
+ 1787223600000,
+ 277.2,
+ 0
+ ],
+ [
+ 1787227200000,
+ 334.1,
+ 0
+ ],
+ [
+ 1787230800000,
+ 175.7,
+ 0
+ ],
+ [
+ 1787234400000,
+ 24.1,
+ 0
+ ],
+ [
+ 1787238000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1787241600000,
+ 352.9,
+ 0
+ ],
+ [
+ 1787245200000,
+ 345.5,
+ 0
+ ],
+ [
+ 1787248800000,
+ 329.7,
+ 0
+ ],
+ [
+ 1787252400000,
+ 323.7,
+ 0
+ ],
+ [
+ 1787256000000,
+ 337.7,
+ 0
+ ],
+ [
+ 1787259600000,
+ 338.6,
+ 0
+ ],
+ [
+ 1787263200000,
+ 326.5,
+ 0
+ ],
+ [
+ 1787266800000,
+ 339.6,
+ 0
+ ],
+ [
+ 1787270400000,
+ 353.9,
+ 0
+ ],
+ [
+ 1787274000000,
+ 47.5,
+ 0
+ ],
+ [
+ 1787277600000,
+ 72.0,
+ 0
+ ],
+ [
+ 1787281200000,
+ 123.5,
+ 0
+ ],
+ [
+ 1787284800000,
+ 138.8,
+ 0
+ ],
+ [
+ 1787288400000,
+ 92.5,
+ 0
+ ],
+ [
+ 1787292000000,
+ 56.2,
+ 0
+ ],
+ [
+ 1787295600000,
+ 105.1,
+ 0
+ ],
+ [
+ 1787299200000,
+ 359.2,
+ 0
+ ],
+ [
+ 1787302800000,
+ 30.7,
+ 0
+ ],
+ [
+ 1787306400000,
+ 9.2,
+ 0
+ ],
+ [
+ 1787310000000,
+ 159.0,
+ 0
+ ],
+ [
+ 1787313600000,
+ 49.9,
+ 0
+ ],
+ [
+ 1787317200000,
+ 351.4,
+ 0
+ ],
+ [
+ 1787320800000,
+ 300.0,
+ 0
+ ],
+ [
+ 1787324400000,
+ 272.7,
+ 0
+ ],
+ [
+ 1787328000000,
+ 247.7,
+ 0
+ ],
+ [
+ 1787331600000,
+ 278.7,
+ 0
+ ],
+ [
+ 1787335200000,
+ 325.1,
+ 0
+ ],
+ [
+ 1787338800000,
+ 352.1,
+ 0
+ ],
+ [
+ 1787342400000,
+ 351.3,
+ 0
+ ],
+ [
+ 1787346000000,
+ 353.6,
+ 0
+ ],
+ [
+ 1787349600000,
+ 330.8,
+ 0
+ ],
+ [
+ 1787353200000,
+ 339.0,
+ 0
+ ],
+ [
+ 1787356800000,
+ 321.5,
+ 0
+ ],
+ [
+ 1787360400000,
+ 333.4,
+ 0
+ ],
+ [
+ 1787364000000,
+ 136.0,
+ 0
+ ],
+ [
+ 1787367600000,
+ 156.8,
+ 0
+ ],
+ [
+ 1787371200000,
+ 127.1,
+ 0
+ ],
+ [
+ 1787374800000,
+ 234.8,
+ 0
+ ],
+ [
+ 1787378400000,
+ 188.3,
+ 0
+ ],
+ [
+ 1787382000000,
+ 82.0,
+ 0
+ ],
+ [
+ 1787385600000,
+ 140.2,
+ 0
+ ],
+ [
+ 1787389200000,
+ 161.5,
+ 0
+ ],
+ [
+ 1787392800000,
+ 156.2,
+ 0
+ ],
+ [
+ 1787396400000,
+ 160.8,
+ 0
+ ],
+ [
+ 1787400000000,
+ 160.6,
+ 0
+ ],
+ [
+ 1787403600000,
+ 160.3,
+ 0
+ ],
+ [
+ 1787407200000,
+ 148.3,
+ 0
+ ],
+ [
+ 1787410800000,
+ 304.5,
+ 0
+ ],
+ [
+ 1787414400000,
+ 306.4,
+ 0
+ ],
+ [
+ 1787418000000,
+ 339.7,
+ 0
+ ],
+ [
+ 1787421600000,
+ 326.9,
+ 0
+ ],
+ [
+ 1787425200000,
+ 330.4,
+ 0
+ ],
+ [
+ 1787428800000,
+ 347.6,
+ 0
+ ],
+ [
+ 1787432400000,
+ 355.5,
+ 0
+ ],
+ [
+ 1787436000000,
+ 14.7,
+ 0
+ ],
+ [
+ 1787439600000,
+ 24.8,
+ 0
+ ],
+ [
+ 1787443200000,
+ 79.7,
+ 0
+ ],
+ [
+ 1787446800000,
+ 151.8,
+ 0
+ ],
+ [
+ 1787450400000,
+ 86.4,
+ 0
+ ],
+ [
+ 1787454000000,
+ 132.6,
+ 0
+ ],
+ [
+ 1787457600000,
+ 120.3,
+ 0
+ ],
+ [
+ 1787461200000,
+ 140.9,
+ 0
+ ],
+ [
+ 1787464800000,
+ 150.2,
+ 0
+ ],
+ [
+ 1787468400000,
+ 160.8,
+ 0
+ ],
+ [
+ 1787472000000,
+ 157.1,
+ 0
+ ],
+ [
+ 1787475600000,
+ 152.9,
+ 0
+ ],
+ [
+ 1787479200000,
+ 151.3,
+ 0
+ ],
+ [
+ 1787482800000,
+ 141.5,
+ 0
+ ],
+ [
+ 1787486400000,
+ 149.5,
+ 0
+ ],
+ [
+ 1787490000000,
+ 152.2,
+ 0
+ ],
+ [
+ 1787493600000,
+ 142.0,
+ 0
+ ],
+ [
+ 1787497200000,
+ 153.5,
+ 0
+ ],
+ [
+ 1787500800000,
+ 138.6,
+ 0
+ ],
+ [
+ 1787504400000,
+ 142.9,
+ 0
+ ],
+ [
+ 1787508000000,
+ 160.9,
+ 0
+ ],
+ [
+ 1787511600000,
+ 153.1,
+ 0
+ ],
+ [
+ 1787515200000,
+ 145.0,
+ 0
+ ],
+ [
+ 1787518800000,
+ 135.4,
+ 0
+ ],
+ [
+ 1787522400000,
+ 139.7,
+ 0
+ ],
+ [
+ 1787526000000,
+ 134.4,
+ 0
+ ],
+ [
+ 1787529600000,
+ 134.3,
+ 0
+ ],
+ [
+ 1787533200000,
+ 133.8,
+ 0
+ ],
+ [
+ 1787536800000,
+ 141.6,
+ 0
+ ],
+ [
+ 1787540400000,
+ 157.0,
+ 0
+ ],
+ [
+ 1787544000000,
+ 165.1,
+ 0
+ ],
+ [
+ 1787547600000,
+ 147.9,
+ 0
+ ],
+ [
+ 1787551200000,
+ 148.1,
+ 0
+ ],
+ [
+ 1787554800000,
+ 141.6,
+ 0
+ ],
+ [
+ 1787558400000,
+ 147.7,
+ 0
+ ],
+ [
+ 1787562000000,
+ 150.0,
+ 0
+ ],
+ [
+ 1787565600000,
+ 140.6,
+ 0
+ ],
+ [
+ 1787569200000,
+ 146.5,
+ 0
+ ],
+ [
+ 1787572800000,
+ 143.0,
+ 0
+ ],
+ [
+ 1787576400000,
+ 149.6,
+ 0
+ ],
+ [
+ 1787580000000,
+ 145.9,
+ 0
+ ],
+ [
+ 1787583600000,
+ 153.9,
+ 0
+ ],
+ [
+ 1787587200000,
+ 148.2,
+ 0
+ ],
+ [
+ 1787590800000,
+ 140.9,
+ 0
+ ],
+ [
+ 1787594400000,
+ 143.3,
+ 0
+ ],
+ [
+ 1787598000000,
+ 150.2,
+ 0
+ ],
+ [
+ 1787601600000,
+ 155.5,
+ 0
+ ],
+ [
+ 1787605200000,
+ 154.2,
+ 0
+ ],
+ [
+ 1787608800000,
+ 148.7,
+ 0
+ ],
+ [
+ 1787612400000,
+ 150.3,
+ 0
+ ],
+ [
+ 1787616000000,
+ 149.2,
+ 0
+ ],
+ [
+ 1787619600000,
+ 148.0,
+ 0
+ ],
+ [
+ 1787623200000,
+ 132.8,
+ 0
+ ],
+ [
+ 1787626800000,
+ 152.7,
+ 0
+ ],
+ [
+ 1787630400000,
+ 159.2,
+ 0
+ ],
+ [
+ 1787634000000,
+ 148.4,
+ 0
+ ],
+ [
+ 1787637600000,
+ 149.0,
+ 0
+ ],
+ [
+ 1787641200000,
+ 145.8,
+ 0
+ ],
+ [
+ 1787644800000,
+ 149.3,
+ 0
+ ],
+ [
+ 1787648400000,
+ 155.3,
+ 0
+ ],
+ [
+ 1787652000000,
+ 153.4,
+ 0
+ ],
+ [
+ 1787655600000,
+ 154.2,
+ 0
+ ],
+ [
+ 1787659200000,
+ 160.0,
+ 0
+ ],
+ [
+ 1787662800000,
+ 164.5,
+ 0
+ ],
+ [
+ 1787666400000,
+ 152.5,
+ 0
+ ],
+ [
+ 1787670000000,
+ 187.8,
+ 0
+ ],
+ [
+ 1787673600000,
+ 268.6,
+ 0
+ ],
+ [
+ 1787677200000,
+ 288.6,
+ 0
+ ],
+ [
+ 1787680800000,
+ 334.7,
+ 0
+ ],
+ [
+ 1787684400000,
+ 352.6,
+ 0
+ ],
+ [
+ 1787688000000,
+ 352.6,
+ 0
+ ],
+ [
+ 1787691600000,
+ 350.0,
+ 0
+ ],
+ [
+ 1787695200000,
+ 350.4,
+ 0
+ ],
+ [
+ 1787698800000,
+ 352.0,
+ 0
+ ],
+ [
+ 1787702400000,
+ 6.0,
+ 0
+ ],
+ [
+ 1787706000000,
+ 8.2,
+ 0
+ ],
+ [
+ 1787709600000,
+ 9.2,
+ 0
+ ],
+ [
+ 1787713200000,
+ 139.7,
+ 0
+ ],
+ [
+ 1787716800000,
+ 124.2,
+ 0
+ ],
+ [
+ 1787720400000,
+ 22.7,
+ 0
+ ],
+ [
+ 1787724000000,
+ 139.1,
+ 0
+ ],
+ [
+ 1787727600000,
+ 149.4,
+ 0
+ ],
+ [
+ 1787731200000,
+ 215.1,
+ 0
+ ],
+ [
+ 1787734800000,
+ 267.7,
+ 0
+ ],
+ [
+ 1787738400000,
+ 326.6,
+ 0
+ ],
+ [
+ 1787742000000,
+ 141.1,
+ 0
+ ],
+ [
+ 1787745600000,
+ 157.9,
+ 0
+ ],
+ [
+ 1787749200000,
+ 154.8,
+ 0
+ ],
+ [
+ 1787752800000,
+ 148.3,
+ 0
+ ],
+ [
+ 1787756400000,
+ 238.6,
+ 0
+ ],
+ [
+ 1787760000000,
+ 344.5,
+ 0
+ ],
+ [
+ 1787763600000,
+ 343.0,
+ 0
+ ],
+ [
+ 1787767200000,
+ 326.3,
+ 0
+ ],
+ [
+ 1787770800000,
+ 319.3,
+ 0
+ ],
+ [
+ 1787774400000,
+ 334.7,
+ 0
+ ],
+ [
+ 1787778000000,
+ 329.3,
+ 0
+ ],
+ [
+ 1787781600000,
+ 351.6,
+ 0
+ ],
+ [
+ 1787785200000,
+ 140.0,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Dir-Wind.Inst.1Hour.0.Decodes-Raw.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Dir-Wind.Inst.1Hour.0.Decodes-Raw.json
index 5e0900d8d..96021ba59 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Dir-Wind.Inst.1Hour.0.Decodes-Raw.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Dir-Wind.Inst.1Hour.0.Decodes-Raw.json
@@ -1,7 +1,7 @@
{
"begin": "2026-06-01T00:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T15:00:00+00:00",
+ "end": "2026-08-26T23:00:00+00:00",
"interval": "PT1H",
"interval-offset": 0,
"name": "EUFA.Dir-Wind.Inst.1Hour.0.Decodes-Raw",
@@ -9,7 +9,7 @@
"page": "MTc4MTQ4MTYwMDAwMHx8MzM3fHwzMDAwMDA=",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 1528,
+ "total": 2088,
"units": "deg",
"value-columns": [
{
@@ -7668,6 +7668,2806 @@
1785769200000,
146.4,
0
+ ],
+ [
+ 1785772800000,
+ 151.9,
+ 0
+ ],
+ [
+ 1785776400000,
+ 139.1,
+ 0
+ ],
+ [
+ 1785780000000,
+ 134.2,
+ 0
+ ],
+ [
+ 1785783600000,
+ 133.1,
+ 0
+ ],
+ [
+ 1785787200000,
+ 132.4,
+ 0
+ ],
+ [
+ 1785790800000,
+ 138.0,
+ 0
+ ],
+ [
+ 1785794400000,
+ 133.9,
+ 0
+ ],
+ [
+ 1785798000000,
+ 140.0,
+ 0
+ ],
+ [
+ 1785801600000,
+ 141.8,
+ 0
+ ],
+ [
+ 1785805200000,
+ 135.8,
+ 0
+ ],
+ [
+ 1785808800000,
+ 153.7,
+ 0
+ ],
+ [
+ 1785812400000,
+ 158.1,
+ 0
+ ],
+ [
+ 1785816000000,
+ 158.4,
+ 0
+ ],
+ [
+ 1785819600000,
+ 156.1,
+ 0
+ ],
+ [
+ 1785823200000,
+ 162.4,
+ 0
+ ],
+ [
+ 1785826800000,
+ 160.7,
+ 0
+ ],
+ [
+ 1785830400000,
+ 160.5,
+ 0
+ ],
+ [
+ 1785834000000,
+ 165.5,
+ 0
+ ],
+ [
+ 1785837600000,
+ 171.8,
+ 0
+ ],
+ [
+ 1785841200000,
+ 178.4,
+ 0
+ ],
+ [
+ 1785844800000,
+ 174.0,
+ 0
+ ],
+ [
+ 1785848400000,
+ 168.4,
+ 0
+ ],
+ [
+ 1785852000000,
+ 152.1,
+ 0
+ ],
+ [
+ 1785855600000,
+ 134.4,
+ 0
+ ],
+ [
+ 1785859200000,
+ 132.8,
+ 0
+ ],
+ [
+ 1785862800000,
+ 138.6,
+ 0
+ ],
+ [
+ 1785866400000,
+ 134.0,
+ 0
+ ],
+ [
+ 1785870000000,
+ 166.4,
+ 0
+ ],
+ [
+ 1785873600000,
+ 133.1,
+ 0
+ ],
+ [
+ 1785877200000,
+ 139.6,
+ 0
+ ],
+ [
+ 1785880800000,
+ 138.0,
+ 0
+ ],
+ [
+ 1785884400000,
+ 135.0,
+ 0
+ ],
+ [
+ 1785888000000,
+ 134.0,
+ 0
+ ],
+ [
+ 1785891600000,
+ 134.8,
+ 0
+ ],
+ [
+ 1785895200000,
+ 147.2,
+ 0
+ ],
+ [
+ 1785898800000,
+ 144.1,
+ 0
+ ],
+ [
+ 1785902400000,
+ 174.0,
+ 0
+ ],
+ [
+ 1785906000000,
+ 156.0,
+ 0
+ ],
+ [
+ 1785909600000,
+ 152.4,
+ 0
+ ],
+ [
+ 1785913200000,
+ 160.0,
+ 0
+ ],
+ [
+ 1785916800000,
+ 157.2,
+ 0
+ ],
+ [
+ 1785920400000,
+ 158.1,
+ 0
+ ],
+ [
+ 1785924000000,
+ 158.6,
+ 0
+ ],
+ [
+ 1785927600000,
+ 165.5,
+ 0
+ ],
+ [
+ 1785931200000,
+ 172.9,
+ 0
+ ],
+ [
+ 1785934800000,
+ 170.1,
+ 0
+ ],
+ [
+ 1785938400000,
+ 142.9,
+ 0
+ ],
+ [
+ 1785942000000,
+ 134.5,
+ 0
+ ],
+ [
+ 1785945600000,
+ 143.1,
+ 0
+ ],
+ [
+ 1785949200000,
+ 241.7,
+ 0
+ ],
+ [
+ 1785952800000,
+ 244.6,
+ 0
+ ],
+ [
+ 1785956400000,
+ 243.3,
+ 0
+ ],
+ [
+ 1785960000000,
+ 272.8,
+ 0
+ ],
+ [
+ 1785963600000,
+ 346.7,
+ 0
+ ],
+ [
+ 1785967200000,
+ 182.3,
+ 0
+ ],
+ [
+ 1785970800000,
+ 178.1,
+ 0
+ ],
+ [
+ 1785974400000,
+ 151.1,
+ 0
+ ],
+ [
+ 1785978000000,
+ 151.0,
+ 0
+ ],
+ [
+ 1785981600000,
+ 162.1,
+ 0
+ ],
+ [
+ 1785985200000,
+ 146.5,
+ 0
+ ],
+ [
+ 1785988800000,
+ 142.7,
+ 0
+ ],
+ [
+ 1785992400000,
+ 155.5,
+ 0
+ ],
+ [
+ 1785996000000,
+ 156.0,
+ 0
+ ],
+ [
+ 1785999600000,
+ 162.1,
+ 0
+ ],
+ [
+ 1786003200000,
+ 168.4,
+ 0
+ ],
+ [
+ 1786006800000,
+ 172.5,
+ 0
+ ],
+ [
+ 1786010400000,
+ 170.5,
+ 0
+ ],
+ [
+ 1786014000000,
+ 162.7,
+ 0
+ ],
+ [
+ 1786017600000,
+ 173.5,
+ 0
+ ],
+ [
+ 1786021200000,
+ 207.0,
+ 0
+ ],
+ [
+ 1786024800000,
+ 213.2,
+ 0
+ ],
+ [
+ 1786028400000,
+ 267.7,
+ 0
+ ],
+ [
+ 1786032000000,
+ 301.1,
+ 0
+ ],
+ [
+ 1786035600000,
+ 304.5,
+ 0
+ ],
+ [
+ 1786039200000,
+ 341.3,
+ 0
+ ],
+ [
+ 1786042800000,
+ 340.9,
+ 0
+ ],
+ [
+ 1786046400000,
+ 351.5,
+ 0
+ ],
+ [
+ 1786050000000,
+ 336.2,
+ 0
+ ],
+ [
+ 1786053600000,
+ 300.6,
+ 0
+ ],
+ [
+ 1786057200000,
+ 332.8,
+ 0
+ ],
+ [
+ 1786060800000,
+ 258.0,
+ 0
+ ],
+ [
+ 1786064400000,
+ 232.7,
+ 0
+ ],
+ [
+ 1786068000000,
+ 155.4,
+ 0
+ ],
+ [
+ 1786071600000,
+ 161.9,
+ 0
+ ],
+ [
+ 1786075200000,
+ 150.2,
+ 0
+ ],
+ [
+ 1786078800000,
+ 143.0,
+ 0
+ ],
+ [
+ 1786082400000,
+ 157.6,
+ 0
+ ],
+ [
+ 1786086000000,
+ 150.7,
+ 0
+ ],
+ [
+ 1786089600000,
+ 150.4,
+ 0
+ ],
+ [
+ 1786093200000,
+ 142.5,
+ 0
+ ],
+ [
+ 1786096800000,
+ 148.8,
+ 0
+ ],
+ [
+ 1786100400000,
+ 162.2,
+ 0
+ ],
+ [
+ 1786104000000,
+ 167.8,
+ 0
+ ],
+ [
+ 1786107600000,
+ 151.5,
+ 0
+ ],
+ [
+ 1786111200000,
+ 148.7,
+ 0
+ ],
+ [
+ 1786114800000,
+ 200.6,
+ 0
+ ],
+ [
+ 1786118400000,
+ 348.4,
+ 0
+ ],
+ [
+ 1786122000000,
+ 349.5,
+ 0
+ ],
+ [
+ 1786125600000,
+ 356.3,
+ 0
+ ],
+ [
+ 1786129200000,
+ 352.4,
+ 0
+ ],
+ [
+ 1786132800000,
+ 348.5,
+ 0
+ ],
+ [
+ 1786136400000,
+ 339.2,
+ 0
+ ],
+ [
+ 1786140000000,
+ 329.3,
+ 0
+ ],
+ [
+ 1786143600000,
+ 303.0,
+ 0
+ ],
+ [
+ 1786147200000,
+ 131.6,
+ 0
+ ],
+ [
+ 1786150800000,
+ 20.8,
+ 0
+ ],
+ [
+ 1786154400000,
+ 20.9,
+ 0
+ ],
+ [
+ 1786158000000,
+ 153.1,
+ 0
+ ],
+ [
+ 1786161600000,
+ 139.6,
+ 0
+ ],
+ [
+ 1786165200000,
+ 147.5,
+ 0
+ ],
+ [
+ 1786168800000,
+ 159.3,
+ 0
+ ],
+ [
+ 1786172400000,
+ 153.3,
+ 0
+ ],
+ [
+ 1786176000000,
+ 178.4,
+ 0
+ ],
+ [
+ 1786179600000,
+ 159.7,
+ 0
+ ],
+ [
+ 1786183200000,
+ 159.3,
+ 0
+ ],
+ [
+ 1786186800000,
+ 158.3,
+ 0
+ ],
+ [
+ 1786190400000,
+ 153.2,
+ 0
+ ],
+ [
+ 1786194000000,
+ 148.5,
+ 0
+ ],
+ [
+ 1786197600000,
+ 138.6,
+ 0
+ ],
+ [
+ 1786201200000,
+ 133.3,
+ 0
+ ],
+ [
+ 1786204800000,
+ 144.8,
+ 0
+ ],
+ [
+ 1786208400000,
+ 269.1,
+ 0
+ ],
+ [
+ 1786212000000,
+ 353.7,
+ 0
+ ],
+ [
+ 1786215600000,
+ 352.1,
+ 0
+ ],
+ [
+ 1786219200000,
+ 352.0,
+ 0
+ ],
+ [
+ 1786222800000,
+ 349.9,
+ 0
+ ],
+ [
+ 1786226400000,
+ 352.6,
+ 0
+ ],
+ [
+ 1786230000000,
+ 216.7,
+ 0
+ ],
+ [
+ 1786233600000,
+ 211.1,
+ 0
+ ],
+ [
+ 1786237200000,
+ 186.6,
+ 0
+ ],
+ [
+ 1786240800000,
+ 164.8,
+ 0
+ ],
+ [
+ 1786244400000,
+ 172.1,
+ 0
+ ],
+ [
+ 1786248000000,
+ 181.0,
+ 0
+ ],
+ [
+ 1786251600000,
+ 163.0,
+ 0
+ ],
+ [
+ 1786255200000,
+ 167.5,
+ 0
+ ],
+ [
+ 1786258800000,
+ 155.2,
+ 0
+ ],
+ [
+ 1786262400000,
+ 152.8,
+ 0
+ ],
+ [
+ 1786266000000,
+ 162.7,
+ 0
+ ],
+ [
+ 1786269600000,
+ 153.5,
+ 0
+ ],
+ [
+ 1786273200000,
+ 159.2,
+ 0
+ ],
+ [
+ 1786276800000,
+ 140.4,
+ 0
+ ],
+ [
+ 1786280400000,
+ 125.4,
+ 0
+ ],
+ [
+ 1786284000000,
+ 137.1,
+ 0
+ ],
+ [
+ 1786287600000,
+ 170.6,
+ 0
+ ],
+ [
+ 1786291200000,
+ 230.7,
+ 0
+ ],
+ [
+ 1786294800000,
+ 250.3,
+ 0
+ ],
+ [
+ 1786298400000,
+ 267.2,
+ 0
+ ],
+ [
+ 1786302000000,
+ 267.4,
+ 0
+ ],
+ [
+ 1786305600000,
+ 199.4,
+ 0
+ ],
+ [
+ 1786309200000,
+ 213.7,
+ 0
+ ],
+ [
+ 1786312800000,
+ 177.6,
+ 0
+ ],
+ [
+ 1786316400000,
+ 172.3,
+ 0
+ ],
+ [
+ 1786320000000,
+ 189.4,
+ 0
+ ],
+ [
+ 1786323600000,
+ 165.6,
+ 0
+ ],
+ [
+ 1786327200000,
+ 166.0,
+ 0
+ ],
+ [
+ 1786330800000,
+ 176.1,
+ 0
+ ],
+ [
+ 1786334400000,
+ 162.2,
+ 0
+ ],
+ [
+ 1786338000000,
+ 172.3,
+ 0
+ ],
+ [
+ 1786341600000,
+ 171.4,
+ 0
+ ],
+ [
+ 1786345200000,
+ 161.7,
+ 0
+ ],
+ [
+ 1786348800000,
+ 183.2,
+ 0
+ ],
+ [
+ 1786352400000,
+ 194.6,
+ 0
+ ],
+ [
+ 1786356000000,
+ 196.6,
+ 0
+ ],
+ [
+ 1786359600000,
+ 193.7,
+ 0
+ ],
+ [
+ 1786363200000,
+ 157.1,
+ 0
+ ],
+ [
+ 1786366800000,
+ 199.0,
+ 0
+ ],
+ [
+ 1786370400000,
+ 217.0,
+ 0
+ ],
+ [
+ 1786374000000,
+ 250.1,
+ 0
+ ],
+ [
+ 1786377600000,
+ 244.7,
+ 0
+ ],
+ [
+ 1786381200000,
+ 242.1,
+ 0
+ ],
+ [
+ 1786384800000,
+ 265.0,
+ 0
+ ],
+ [
+ 1786388400000,
+ 208.9,
+ 0
+ ],
+ [
+ 1786392000000,
+ 305.3,
+ 0
+ ],
+ [
+ 1786395600000,
+ 225.5,
+ 0
+ ],
+ [
+ 1786399200000,
+ 191.3,
+ 0
+ ],
+ [
+ 1786402800000,
+ 202.4,
+ 0
+ ],
+ [
+ 1786406400000,
+ 214.9,
+ 0
+ ],
+ [
+ 1786410000000,
+ 187.3,
+ 0
+ ],
+ [
+ 1786413600000,
+ 179.5,
+ 0
+ ],
+ [
+ 1786417200000,
+ 168.1,
+ 0
+ ],
+ [
+ 1786420800000,
+ 156.4,
+ 0
+ ],
+ [
+ 1786424400000,
+ 151.9,
+ 0
+ ],
+ [
+ 1786428000000,
+ 156.3,
+ 0
+ ],
+ [
+ 1786431600000,
+ 145.6,
+ 0
+ ],
+ [
+ 1786435200000,
+ 150.3,
+ 0
+ ],
+ [
+ 1786438800000,
+ 175.1,
+ 0
+ ],
+ [
+ 1786442400000,
+ 202.9,
+ 0
+ ],
+ [
+ 1786446000000,
+ 205.9,
+ 0
+ ],
+ [
+ 1786449600000,
+ 178.6,
+ 0
+ ],
+ [
+ 1786453200000,
+ 164.8,
+ 0
+ ],
+ [
+ 1786456800000,
+ 196.6,
+ 0
+ ],
+ [
+ 1786460400000,
+ 237.9,
+ 0
+ ],
+ [
+ 1786464000000,
+ 226.3,
+ 0
+ ],
+ [
+ 1786467600000,
+ 270.4,
+ 0
+ ],
+ [
+ 1786471200000,
+ 284.9,
+ 0
+ ],
+ [
+ 1786474800000,
+ 264.1,
+ 0
+ ],
+ [
+ 1786478400000,
+ 277.5,
+ 0
+ ],
+ [
+ 1786482000000,
+ 244.9,
+ 0
+ ],
+ [
+ 1786485600000,
+ 222.5,
+ 0
+ ],
+ [
+ 1786489200000,
+ 224.0,
+ 0
+ ],
+ [
+ 1786492800000,
+ 243.2,
+ 0
+ ],
+ [
+ 1786496400000,
+ 205.1,
+ 0
+ ],
+ [
+ 1786500000000,
+ 183.3,
+ 0
+ ],
+ [
+ 1786503600000,
+ 173.4,
+ 0
+ ],
+ [
+ 1786507200000,
+ 176.2,
+ 0
+ ],
+ [
+ 1786510800000,
+ 155.0,
+ 0
+ ],
+ [
+ 1786514400000,
+ 152.1,
+ 0
+ ],
+ [
+ 1786518000000,
+ 149.4,
+ 0
+ ],
+ [
+ 1786521600000,
+ 146.9,
+ 0
+ ],
+ [
+ 1786525200000,
+ 149.5,
+ 0
+ ],
+ [
+ 1786528800000,
+ 168.7,
+ 0
+ ],
+ [
+ 1786532400000,
+ 156.7,
+ 0
+ ],
+ [
+ 1786536000000,
+ 148.9,
+ 0
+ ],
+ [
+ 1786539600000,
+ 143.7,
+ 0
+ ],
+ [
+ 1786543200000,
+ 201.9,
+ 0
+ ],
+ [
+ 1786546800000,
+ 220.8,
+ 0
+ ],
+ [
+ 1786550400000,
+ 237.0,
+ 0
+ ],
+ [
+ 1786554000000,
+ 252.9,
+ 0
+ ],
+ [
+ 1786557600000,
+ 236.0,
+ 0
+ ],
+ [
+ 1786561200000,
+ 251.8,
+ 0
+ ],
+ [
+ 1786564800000,
+ 233.8,
+ 0
+ ],
+ [
+ 1786568400000,
+ 247.8,
+ 0
+ ],
+ [
+ 1786572000000,
+ 248.3,
+ 0
+ ],
+ [
+ 1786575600000,
+ 235.5,
+ 0
+ ],
+ [
+ 1786579200000,
+ 228.4,
+ 0
+ ],
+ [
+ 1786582800000,
+ 198.5,
+ 0
+ ],
+ [
+ 1786586400000,
+ 183.0,
+ 0
+ ],
+ [
+ 1786590000000,
+ 163.9,
+ 0
+ ],
+ [
+ 1786593600000,
+ 156.0,
+ 0
+ ],
+ [
+ 1786597200000,
+ 160.9,
+ 0
+ ],
+ [
+ 1786600800000,
+ 148.2,
+ 0
+ ],
+ [
+ 1786604400000,
+ 151.8,
+ 0
+ ],
+ [
+ 1786608000000,
+ 164.8,
+ 0
+ ],
+ [
+ 1786611600000,
+ 158.4,
+ 0
+ ],
+ [
+ 1786615200000,
+ 172.2,
+ 0
+ ],
+ [
+ 1786618800000,
+ 171.9,
+ 0
+ ],
+ [
+ 1786622400000,
+ 160.1,
+ 0
+ ],
+ [
+ 1786626000000,
+ 174.4,
+ 0
+ ],
+ [
+ 1786629600000,
+ 206.1,
+ 0
+ ],
+ [
+ 1786633200000,
+ 236.0,
+ 0
+ ],
+ [
+ 1786636800000,
+ 232.6,
+ 0
+ ],
+ [
+ 1786640400000,
+ 241.5,
+ 0
+ ],
+ [
+ 1786644000000,
+ 243.4,
+ 0
+ ],
+ [
+ 1786647600000,
+ 218.7,
+ 0
+ ],
+ [
+ 1786651200000,
+ 230.4,
+ 0
+ ],
+ [
+ 1786654800000,
+ 199.0,
+ 0
+ ],
+ [
+ 1786658400000,
+ 216.2,
+ 0
+ ],
+ [
+ 1786662000000,
+ 202.3,
+ 0
+ ],
+ [
+ 1786665600000,
+ 202.3,
+ 0
+ ],
+ [
+ 1786669200000,
+ 190.7,
+ 0
+ ],
+ [
+ 1786672800000,
+ 170.8,
+ 0
+ ],
+ [
+ 1786676400000,
+ 163.2,
+ 0
+ ],
+ [
+ 1786680000000,
+ 155.3,
+ 0
+ ],
+ [
+ 1786683600000,
+ 147.0,
+ 0
+ ],
+ [
+ 1786687200000,
+ 161.2,
+ 0
+ ],
+ [
+ 1786690800000,
+ 151.7,
+ 0
+ ],
+ [
+ 1786694400000,
+ 166.4,
+ 0
+ ],
+ [
+ 1786698000000,
+ 192.6,
+ 0
+ ],
+ [
+ 1786701600000,
+ 199.0,
+ 0
+ ],
+ [
+ 1786705200000,
+ 194.5,
+ 0
+ ],
+ [
+ 1786708800000,
+ 196.2,
+ 0
+ ],
+ [
+ 1786712400000,
+ 206.0,
+ 0
+ ],
+ [
+ 1786716000000,
+ 217.6,
+ 0
+ ],
+ [
+ 1786719600000,
+ 242.5,
+ 0
+ ],
+ [
+ 1786723200000,
+ 262.5,
+ 0
+ ],
+ [
+ 1786726800000,
+ 246.6,
+ 0
+ ],
+ [
+ 1786730400000,
+ 249.0,
+ 0
+ ],
+ [
+ 1786734000000,
+ 237.2,
+ 0
+ ],
+ [
+ 1786737600000,
+ 216.8,
+ 0
+ ],
+ [
+ 1786741200000,
+ 220.1,
+ 0
+ ],
+ [
+ 1786744800000,
+ 211.9,
+ 0
+ ],
+ [
+ 1786748400000,
+ 203.0,
+ 0
+ ],
+ [
+ 1786752000000,
+ 194.9,
+ 0
+ ],
+ [
+ 1786755600000,
+ 196.4,
+ 0
+ ],
+ [
+ 1786759200000,
+ 189.8,
+ 0
+ ],
+ [
+ 1786762800000,
+ 167.6,
+ 0
+ ],
+ [
+ 1786766400000,
+ 164.0,
+ 0
+ ],
+ [
+ 1786770000000,
+ 164.5,
+ 0
+ ],
+ [
+ 1786773600000,
+ 156.1,
+ 0
+ ],
+ [
+ 1786777200000,
+ 154.2,
+ 0
+ ],
+ [
+ 1786780800000,
+ 154.3,
+ 0
+ ],
+ [
+ 1786784400000,
+ 195.7,
+ 0
+ ],
+ [
+ 1786788000000,
+ 163.6,
+ 0
+ ],
+ [
+ 1786791600000,
+ 163.8,
+ 0
+ ],
+ [
+ 1786795200000,
+ 159.0,
+ 0
+ ],
+ [
+ 1786798800000,
+ 161.9,
+ 0
+ ],
+ [
+ 1786802400000,
+ 201.3,
+ 0
+ ],
+ [
+ 1786806000000,
+ 242.5,
+ 0
+ ],
+ [
+ 1786809600000,
+ 254.3,
+ 0
+ ],
+ [
+ 1786813200000,
+ 245.5,
+ 0
+ ],
+ [
+ 1786816800000,
+ 223.9,
+ 0
+ ],
+ [
+ 1786820400000,
+ 228.3,
+ 0
+ ],
+ [
+ 1786824000000,
+ 204.8,
+ 0
+ ],
+ [
+ 1786827600000,
+ 223.9,
+ 0
+ ],
+ [
+ 1786831200000,
+ 198.4,
+ 0
+ ],
+ [
+ 1786834800000,
+ 210.2,
+ 0
+ ],
+ [
+ 1786838400000,
+ 209.0,
+ 0
+ ],
+ [
+ 1786842000000,
+ 200.3,
+ 0
+ ],
+ [
+ 1786845600000,
+ 188.2,
+ 0
+ ],
+ [
+ 1786849200000,
+ 175.6,
+ 0
+ ],
+ [
+ 1786852800000,
+ 166.0,
+ 0
+ ],
+ [
+ 1786856400000,
+ 163.3,
+ 0
+ ],
+ [
+ 1786860000000,
+ 154.0,
+ 0
+ ],
+ [
+ 1786863600000,
+ 148.7,
+ 0
+ ],
+ [
+ 1786867200000,
+ 148.7,
+ 0
+ ],
+ [
+ 1786870800000,
+ 158.6,
+ 0
+ ],
+ [
+ 1786874400000,
+ 137.3,
+ 0
+ ],
+ [
+ 1786878000000,
+ 163.6,
+ 0
+ ],
+ [
+ 1786881600000,
+ 190.9,
+ 0
+ ],
+ [
+ 1786885200000,
+ 216.3,
+ 0
+ ],
+ [
+ 1786888800000,
+ 233.4,
+ 0
+ ],
+ [
+ 1786892400000,
+ 240.9,
+ 0
+ ],
+ [
+ 1786896000000,
+ 269.3,
+ 0
+ ],
+ [
+ 1786899600000,
+ 273.5,
+ 0
+ ],
+ [
+ 1786903200000,
+ 295.0,
+ 0
+ ],
+ [
+ 1786906800000,
+ 297.3,
+ 0
+ ],
+ [
+ 1786910400000,
+ 301.5,
+ 0
+ ],
+ [
+ 1786914000000,
+ 316.1,
+ 0
+ ],
+ [
+ 1786917600000,
+ 314.4,
+ 0
+ ],
+ [
+ 1786921200000,
+ 316.6,
+ 0
+ ],
+ [
+ 1786924800000,
+ 272.9,
+ 0
+ ],
+ [
+ 1786928400000,
+ 271.3,
+ 0
+ ],
+ [
+ 1786932000000,
+ 286.6,
+ 0
+ ],
+ [
+ 1786935600000,
+ 287.2,
+ 0
+ ],
+ [
+ 1786939200000,
+ 248.3,
+ 0
+ ],
+ [
+ 1786942800000,
+ 344.2,
+ 0
+ ],
+ [
+ 1786946400000,
+ 315.6,
+ 0
+ ],
+ [
+ 1786950000000,
+ 356.2,
+ 0
+ ],
+ [
+ 1786953600000,
+ 356.3,
+ 0
+ ],
+ [
+ 1786957200000,
+ 5.4,
+ 0
+ ],
+ [
+ 1786960800000,
+ 202.9,
+ 0
+ ],
+ [
+ 1786964400000,
+ 73.7,
+ 0
+ ],
+ [
+ 1786968000000,
+ 69.5,
+ 0
+ ],
+ [
+ 1786971600000,
+ 149.0,
+ 0
+ ],
+ [
+ 1786975200000,
+ 144.6,
+ 0
+ ],
+ [
+ 1786978800000,
+ 359.5,
+ 0
+ ],
+ [
+ 1786982400000,
+ 18.7,
+ 0
+ ],
+ [
+ 1786986000000,
+ 37.3,
+ 0
+ ],
+ [
+ 1786989600000,
+ 136.5,
+ 0
+ ],
+ [
+ 1786993200000,
+ 152.7,
+ 0
+ ],
+ [
+ 1786996800000,
+ 145.7,
+ 0
+ ],
+ [
+ 1787000400000,
+ 11.2,
+ 0
+ ],
+ [
+ 1787004000000,
+ 5.4,
+ 0
+ ],
+ [
+ 1787007600000,
+ 9.3,
+ 0
+ ],
+ [
+ 1787011200000,
+ 9.6,
+ 0
+ ],
+ [
+ 1787014800000,
+ 10.9,
+ 0
+ ],
+ [
+ 1787018400000,
+ 11.3,
+ 0
+ ],
+ [
+ 1787022000000,
+ 166.7,
+ 0
+ ],
+ [
+ 1787025600000,
+ 152.4,
+ 0
+ ],
+ [
+ 1787029200000,
+ 120.1,
+ 0
+ ],
+ [
+ 1787032800000,
+ 124.8,
+ 0
+ ],
+ [
+ 1787036400000,
+ 91.7,
+ 0
+ ],
+ [
+ 1787040000000,
+ 145.3,
+ 0
+ ],
+ [
+ 1787043600000,
+ 137.6,
+ 0
+ ],
+ [
+ 1787047200000,
+ 136.2,
+ 0
+ ],
+ [
+ 1787050800000,
+ 151.3,
+ 0
+ ],
+ [
+ 1787054400000,
+ 161.4,
+ 0
+ ],
+ [
+ 1787058000000,
+ 164.0,
+ 0
+ ],
+ [
+ 1787061600000,
+ 155.5,
+ 0
+ ],
+ [
+ 1787065200000,
+ 138.9,
+ 0
+ ],
+ [
+ 1787068800000,
+ 139.8,
+ 0
+ ],
+ [
+ 1787072400000,
+ 23.5,
+ 0
+ ],
+ [
+ 1787076000000,
+ 352.9,
+ 0
+ ],
+ [
+ 1787079600000,
+ 354.8,
+ 0
+ ],
+ [
+ 1787083200000,
+ 354.6,
+ 0
+ ],
+ [
+ 1787086800000,
+ 346.0,
+ 0
+ ],
+ [
+ 1787090400000,
+ 326.4,
+ 0
+ ],
+ [
+ 1787094000000,
+ 329.9,
+ 0
+ ],
+ [
+ 1787097600000,
+ 313.9,
+ 0
+ ],
+ [
+ 1787101200000,
+ 232.8,
+ 0
+ ],
+ [
+ 1787104800000,
+ 190.3,
+ 0
+ ],
+ [
+ 1787108400000,
+ 185.5,
+ 0
+ ],
+ [
+ 1787112000000,
+ 206.0,
+ 0
+ ],
+ [
+ 1787115600000,
+ 204.7,
+ 0
+ ],
+ [
+ 1787119200000,
+ 203.4,
+ 0
+ ],
+ [
+ 1787122800000,
+ 175.1,
+ 0
+ ],
+ [
+ 1787126400000,
+ 164.5,
+ 0
+ ],
+ [
+ 1787130000000,
+ 154.2,
+ 0
+ ],
+ [
+ 1787133600000,
+ 190.3,
+ 0
+ ],
+ [
+ 1787137200000,
+ 242.7,
+ 0
+ ],
+ [
+ 1787140800000,
+ 268.6,
+ 0
+ ],
+ [
+ 1787144400000,
+ 294.8,
+ 0
+ ],
+ [
+ 1787148000000,
+ 279.3,
+ 0
+ ],
+ [
+ 1787151600000,
+ 275.7,
+ 0
+ ],
+ [
+ 1787155200000,
+ 280.7,
+ 0
+ ],
+ [
+ 1787158800000,
+ 277.0,
+ 0
+ ],
+ [
+ 1787162400000,
+ 329.4,
+ 0
+ ],
+ [
+ 1787166000000,
+ 342.3,
+ 0
+ ],
+ [
+ 1787169600000,
+ 344.9,
+ 0
+ ],
+ [
+ 1787173200000,
+ 330.3,
+ 0
+ ],
+ [
+ 1787176800000,
+ 324.7,
+ 0
+ ],
+ [
+ 1787180400000,
+ 309.4,
+ 0
+ ],
+ [
+ 1787184000000,
+ 269.8,
+ 0
+ ],
+ [
+ 1787187600000,
+ 255.9,
+ 0
+ ],
+ [
+ 1787191200000,
+ 225.9,
+ 0
+ ],
+ [
+ 1787194800000,
+ 250.2,
+ 0
+ ],
+ [
+ 1787198400000,
+ 336.1,
+ 0
+ ],
+ [
+ 1787202000000,
+ 272.3,
+ 0
+ ],
+ [
+ 1787205600000,
+ 232.0,
+ 0
+ ],
+ [
+ 1787209200000,
+ 226.7,
+ 0
+ ],
+ [
+ 1787212800000,
+ 192.3,
+ 0
+ ],
+ [
+ 1787216400000,
+ 157.7,
+ 0
+ ],
+ [
+ 1787220000000,
+ 326.0,
+ 0
+ ],
+ [
+ 1787223600000,
+ 277.2,
+ 0
+ ],
+ [
+ 1787227200000,
+ 334.1,
+ 0
+ ],
+ [
+ 1787230800000,
+ 175.7,
+ 0
+ ],
+ [
+ 1787234400000,
+ 24.1,
+ 0
+ ],
+ [
+ 1787238000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1787241600000,
+ 352.9,
+ 0
+ ],
+ [
+ 1787245200000,
+ 345.5,
+ 0
+ ],
+ [
+ 1787248800000,
+ 329.7,
+ 0
+ ],
+ [
+ 1787252400000,
+ 323.7,
+ 0
+ ],
+ [
+ 1787256000000,
+ 337.7,
+ 0
+ ],
+ [
+ 1787259600000,
+ 338.6,
+ 0
+ ],
+ [
+ 1787263200000,
+ 326.5,
+ 0
+ ],
+ [
+ 1787266800000,
+ 339.6,
+ 0
+ ],
+ [
+ 1787270400000,
+ 353.9,
+ 0
+ ],
+ [
+ 1787274000000,
+ 47.5,
+ 0
+ ],
+ [
+ 1787277600000,
+ 72.0,
+ 0
+ ],
+ [
+ 1787281200000,
+ 123.5,
+ 0
+ ],
+ [
+ 1787284800000,
+ 138.8,
+ 0
+ ],
+ [
+ 1787288400000,
+ 92.5,
+ 0
+ ],
+ [
+ 1787292000000,
+ 56.2,
+ 0
+ ],
+ [
+ 1787295600000,
+ 105.1,
+ 0
+ ],
+ [
+ 1787299200000,
+ 359.2,
+ 0
+ ],
+ [
+ 1787302800000,
+ 30.7,
+ 0
+ ],
+ [
+ 1787306400000,
+ 9.2,
+ 0
+ ],
+ [
+ 1787310000000,
+ 159.0,
+ 0
+ ],
+ [
+ 1787313600000,
+ 49.9,
+ 0
+ ],
+ [
+ 1787317200000,
+ 351.4,
+ 0
+ ],
+ [
+ 1787320800000,
+ 300.0,
+ 0
+ ],
+ [
+ 1787324400000,
+ 272.7,
+ 0
+ ],
+ [
+ 1787328000000,
+ 247.7,
+ 0
+ ],
+ [
+ 1787331600000,
+ 278.7,
+ 0
+ ],
+ [
+ 1787335200000,
+ 325.1,
+ 0
+ ],
+ [
+ 1787338800000,
+ 352.1,
+ 0
+ ],
+ [
+ 1787342400000,
+ 351.3,
+ 0
+ ],
+ [
+ 1787346000000,
+ 353.6,
+ 0
+ ],
+ [
+ 1787349600000,
+ 330.8,
+ 0
+ ],
+ [
+ 1787353200000,
+ 339.0,
+ 0
+ ],
+ [
+ 1787356800000,
+ 321.5,
+ 0
+ ],
+ [
+ 1787360400000,
+ 333.4,
+ 0
+ ],
+ [
+ 1787364000000,
+ 136.0,
+ 0
+ ],
+ [
+ 1787367600000,
+ 156.8,
+ 0
+ ],
+ [
+ 1787371200000,
+ 127.1,
+ 0
+ ],
+ [
+ 1787374800000,
+ 234.8,
+ 0
+ ],
+ [
+ 1787378400000,
+ 188.3,
+ 0
+ ],
+ [
+ 1787382000000,
+ 82.0,
+ 0
+ ],
+ [
+ 1787385600000,
+ 140.2,
+ 0
+ ],
+ [
+ 1787389200000,
+ 161.5,
+ 0
+ ],
+ [
+ 1787392800000,
+ 156.2,
+ 0
+ ],
+ [
+ 1787396400000,
+ 160.8,
+ 0
+ ],
+ [
+ 1787400000000,
+ 160.6,
+ 0
+ ],
+ [
+ 1787403600000,
+ 160.3,
+ 0
+ ],
+ [
+ 1787407200000,
+ 148.3,
+ 0
+ ],
+ [
+ 1787410800000,
+ 304.5,
+ 0
+ ],
+ [
+ 1787414400000,
+ 306.4,
+ 0
+ ],
+ [
+ 1787418000000,
+ 339.7,
+ 0
+ ],
+ [
+ 1787421600000,
+ 326.9,
+ 0
+ ],
+ [
+ 1787425200000,
+ 330.4,
+ 0
+ ],
+ [
+ 1787428800000,
+ 347.6,
+ 0
+ ],
+ [
+ 1787432400000,
+ 355.5,
+ 0
+ ],
+ [
+ 1787436000000,
+ 14.7,
+ 0
+ ],
+ [
+ 1787439600000,
+ 24.8,
+ 0
+ ],
+ [
+ 1787443200000,
+ 79.7,
+ 0
+ ],
+ [
+ 1787446800000,
+ 151.8,
+ 0
+ ],
+ [
+ 1787450400000,
+ 86.4,
+ 0
+ ],
+ [
+ 1787454000000,
+ 132.6,
+ 0
+ ],
+ [
+ 1787457600000,
+ 120.3,
+ 0
+ ],
+ [
+ 1787461200000,
+ 140.9,
+ 0
+ ],
+ [
+ 1787464800000,
+ 150.2,
+ 0
+ ],
+ [
+ 1787468400000,
+ 160.8,
+ 0
+ ],
+ [
+ 1787472000000,
+ 157.1,
+ 0
+ ],
+ [
+ 1787475600000,
+ 152.9,
+ 0
+ ],
+ [
+ 1787479200000,
+ 151.3,
+ 0
+ ],
+ [
+ 1787482800000,
+ 141.5,
+ 0
+ ],
+ [
+ 1787486400000,
+ 149.5,
+ 0
+ ],
+ [
+ 1787490000000,
+ 152.2,
+ 0
+ ],
+ [
+ 1787493600000,
+ 142.0,
+ 0
+ ],
+ [
+ 1787497200000,
+ 153.5,
+ 0
+ ],
+ [
+ 1787500800000,
+ 138.6,
+ 0
+ ],
+ [
+ 1787504400000,
+ 142.9,
+ 0
+ ],
+ [
+ 1787508000000,
+ 160.9,
+ 0
+ ],
+ [
+ 1787511600000,
+ 153.1,
+ 0
+ ],
+ [
+ 1787515200000,
+ 145.0,
+ 0
+ ],
+ [
+ 1787518800000,
+ 135.4,
+ 0
+ ],
+ [
+ 1787522400000,
+ 139.7,
+ 0
+ ],
+ [
+ 1787526000000,
+ 134.4,
+ 0
+ ],
+ [
+ 1787529600000,
+ 134.3,
+ 0
+ ],
+ [
+ 1787533200000,
+ 133.8,
+ 0
+ ],
+ [
+ 1787536800000,
+ 141.6,
+ 0
+ ],
+ [
+ 1787540400000,
+ 157.0,
+ 0
+ ],
+ [
+ 1787544000000,
+ 165.1,
+ 0
+ ],
+ [
+ 1787547600000,
+ 147.9,
+ 0
+ ],
+ [
+ 1787551200000,
+ 148.1,
+ 0
+ ],
+ [
+ 1787554800000,
+ 141.6,
+ 0
+ ],
+ [
+ 1787558400000,
+ 147.7,
+ 0
+ ],
+ [
+ 1787562000000,
+ 150.0,
+ 0
+ ],
+ [
+ 1787565600000,
+ 140.6,
+ 0
+ ],
+ [
+ 1787569200000,
+ 146.5,
+ 0
+ ],
+ [
+ 1787572800000,
+ 143.0,
+ 0
+ ],
+ [
+ 1787576400000,
+ 149.6,
+ 0
+ ],
+ [
+ 1787580000000,
+ 145.9,
+ 0
+ ],
+ [
+ 1787583600000,
+ 153.9,
+ 0
+ ],
+ [
+ 1787587200000,
+ 148.2,
+ 0
+ ],
+ [
+ 1787590800000,
+ 140.9,
+ 0
+ ],
+ [
+ 1787594400000,
+ 143.3,
+ 0
+ ],
+ [
+ 1787598000000,
+ 150.2,
+ 0
+ ],
+ [
+ 1787601600000,
+ 155.5,
+ 0
+ ],
+ [
+ 1787605200000,
+ 154.2,
+ 0
+ ],
+ [
+ 1787608800000,
+ 148.7,
+ 0
+ ],
+ [
+ 1787612400000,
+ 150.3,
+ 0
+ ],
+ [
+ 1787616000000,
+ 149.2,
+ 0
+ ],
+ [
+ 1787619600000,
+ 148.0,
+ 0
+ ],
+ [
+ 1787623200000,
+ 132.8,
+ 0
+ ],
+ [
+ 1787626800000,
+ 152.7,
+ 0
+ ],
+ [
+ 1787630400000,
+ 159.2,
+ 0
+ ],
+ [
+ 1787634000000,
+ 148.4,
+ 0
+ ],
+ [
+ 1787637600000,
+ 149.0,
+ 0
+ ],
+ [
+ 1787641200000,
+ 145.8,
+ 0
+ ],
+ [
+ 1787644800000,
+ 149.3,
+ 0
+ ],
+ [
+ 1787648400000,
+ 155.3,
+ 0
+ ],
+ [
+ 1787652000000,
+ 153.4,
+ 0
+ ],
+ [
+ 1787655600000,
+ 154.2,
+ 0
+ ],
+ [
+ 1787659200000,
+ 160.0,
+ 0
+ ],
+ [
+ 1787662800000,
+ 164.5,
+ 0
+ ],
+ [
+ 1787666400000,
+ 152.5,
+ 0
+ ],
+ [
+ 1787670000000,
+ 187.8,
+ 0
+ ],
+ [
+ 1787673600000,
+ 268.6,
+ 0
+ ],
+ [
+ 1787677200000,
+ 288.6,
+ 0
+ ],
+ [
+ 1787680800000,
+ 334.7,
+ 0
+ ],
+ [
+ 1787684400000,
+ 352.6,
+ 0
+ ],
+ [
+ 1787688000000,
+ 352.6,
+ 0
+ ],
+ [
+ 1787691600000,
+ 350.0,
+ 0
+ ],
+ [
+ 1787695200000,
+ 350.4,
+ 0
+ ],
+ [
+ 1787698800000,
+ 352.0,
+ 0
+ ],
+ [
+ 1787702400000,
+ 6.0,
+ 0
+ ],
+ [
+ 1787706000000,
+ 8.2,
+ 0
+ ],
+ [
+ 1787709600000,
+ 9.2,
+ 0
+ ],
+ [
+ 1787713200000,
+ 139.7,
+ 0
+ ],
+ [
+ 1787716800000,
+ 124.2,
+ 0
+ ],
+ [
+ 1787720400000,
+ 22.7,
+ 0
+ ],
+ [
+ 1787724000000,
+ 139.1,
+ 0
+ ],
+ [
+ 1787727600000,
+ 149.4,
+ 0
+ ],
+ [
+ 1787731200000,
+ 215.1,
+ 0
+ ],
+ [
+ 1787734800000,
+ 267.7,
+ 0
+ ],
+ [
+ 1787738400000,
+ 326.6,
+ 0
+ ],
+ [
+ 1787742000000,
+ 141.1,
+ 0
+ ],
+ [
+ 1787745600000,
+ 157.9,
+ 0
+ ],
+ [
+ 1787749200000,
+ 154.8,
+ 0
+ ],
+ [
+ 1787752800000,
+ 148.3,
+ 0
+ ],
+ [
+ 1787756400000,
+ 238.6,
+ 0
+ ],
+ [
+ 1787760000000,
+ 344.5,
+ 0
+ ],
+ [
+ 1787763600000,
+ 343.0,
+ 0
+ ],
+ [
+ 1787767200000,
+ 326.3,
+ 0
+ ],
+ [
+ 1787770800000,
+ 319.3,
+ 0
+ ],
+ [
+ 1787774400000,
+ 334.7,
+ 0
+ ],
+ [
+ 1787778000000,
+ 329.3,
+ 0
+ ],
+ [
+ 1787781600000,
+ 351.6,
+ 0
+ ],
+ [
+ 1787785200000,
+ 140.0,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Elev-Tailwater.Inst.1Hour.0.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Elev-Tailwater.Inst.1Hour.0.Ccp-Rev.json
index 3a0fd93b7..b357151d4 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Elev-Tailwater.Inst.1Hour.0.Ccp-Rev.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Elev-Tailwater.Inst.1Hour.0.Ccp-Rev.json
@@ -1,7 +1,7 @@
{
"begin": "2026-06-01T00:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T15:00:00+00:00",
+ "end": "2026-08-26T23:00:00+00:00",
"interval": "PT1H",
"interval-offset": 0,
"name": "EUFA.Elev-Tailwater.Inst.1Hour.0.Ccp-Rev",
@@ -9,7 +9,7 @@
"page": "MTc4MDI3MjAwMDAwMHx8MzM3fHwzMDAwMDA=",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 1528,
+ "total": 2088,
"units": "ft",
"value-columns": [
{
@@ -6596,7 +6596,7 @@
],
[
1784998800000,
- 488.54999999999995,
+ 488.5499999999999,
0
],
[
@@ -6736,7 +6736,7 @@
],
[
1785099600000,
- 488.6099999999999,
+ 488.60999999999984,
0
],
[
@@ -6841,7 +6841,7 @@
],
[
1785175200000,
- 488.5799999999999,
+ 488.57999999999987,
0
],
[
@@ -6856,7 +6856,7 @@
],
[
1785186000000,
- 488.6099999999999,
+ 488.60999999999984,
0
],
[
@@ -6921,7 +6921,7 @@
],
[
1785232800000,
- 482.79999999999995,
+ 482.7999999999999,
0
],
[
@@ -6956,12 +6956,12 @@
],
[
1785258000000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
1785261600000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
@@ -7036,7 +7036,7 @@
],
[
1785315600000,
- 482.79999999999995,
+ 482.7999999999999,
0
],
[
@@ -7076,7 +7076,7 @@
],
[
1785344400000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
@@ -7201,7 +7201,7 @@
],
[
1785434400000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
@@ -7311,12 +7311,12 @@
],
[
1785513600000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
1785517200000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
@@ -7331,7 +7331,7 @@
],
[
1785528000000,
- 487.1099999999999,
+ 487.10999999999984,
0
],
[
@@ -7356,7 +7356,7 @@
],
[
1785546000000,
- 487.54999999999995,
+ 487.5499999999999,
0
],
[
@@ -7416,7 +7416,7 @@
],
[
1785589200000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
@@ -7426,32 +7426,32 @@
],
[
1785596400000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
1785600000000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
1785603600000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
1785607200000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
1785610800000,
- 482.59999999999997,
+ 482.5999999999999,
0
],
[
1785614400000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
@@ -7476,7 +7476,7 @@
],
[
1785632400000,
- 488.6099999999999,
+ 488.60999999999984,
0
],
[
@@ -7496,7 +7496,7 @@
],
[
1785646800000,
- 483.5799999999999,
+ 483.57999999999987,
0
],
[
@@ -7551,22 +7551,22 @@
],
[
1785686400000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
1785690000000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
1785693600000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
1785697200000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
@@ -7576,7 +7576,7 @@
],
[
1785704400000,
- 487.04999999999995,
+ 487.0499999999999,
0
],
[
@@ -7586,7 +7586,7 @@
],
[
1785711600000,
- 488.54999999999995,
+ 488.5499999999999,
0
],
[
@@ -7651,12 +7651,12 @@
],
[
1785758400000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
1785762000000,
- 482.6099999999999,
+ 482.60999999999984,
0
],
[
@@ -7668,6 +7668,2806 @@
1785769200000,
482.61999999999995,
0
+ ],
+ [
+ 1785772800000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1785776400000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1785780000000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1785783600000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1785787200000,
+ 482.71,
+ 0
+ ],
+ [
+ 1785790800000,
+ 486.99999999999994,
+ 0
+ ],
+ [
+ 1785794400000,
+ 488.19999999999993,
+ 0
+ ],
+ [
+ 1785798000000,
+ 488.41999999999996,
+ 0
+ ],
+ [
+ 1785801600000,
+ 488.71,
+ 0
+ ],
+ [
+ 1785805200000,
+ 488.66999999999996,
+ 0
+ ],
+ [
+ 1785808800000,
+ 486.16999999999996,
+ 0
+ ],
+ [
+ 1785812400000,
+ 484.93,
+ 0
+ ],
+ [
+ 1785816000000,
+ 484.1499999999999,
+ 0
+ ],
+ [
+ 1785819600000,
+ 483.6,
+ 0
+ ],
+ [
+ 1785823200000,
+ 483.21999999999997,
+ 0
+ ],
+ [
+ 1785826800000,
+ 482.96999999999997,
+ 0
+ ],
+ [
+ 1785830400000,
+ 482.7999999999999,
+ 0
+ ],
+ [
+ 1785834000000,
+ 482.71,
+ 0
+ ],
+ [
+ 1785837600000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1785841200000,
+ 482.64,
+ 0
+ ],
+ [
+ 1785844800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1785848400000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1785852000000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1785855600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1785859200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1785862800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1785866400000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1785870000000,
+ 482.88,
+ 0
+ ],
+ [
+ 1785873600000,
+ 487.03999999999996,
+ 0
+ ],
+ [
+ 1785877200000,
+ 488.28999999999996,
+ 0
+ ],
+ [
+ 1785880800000,
+ 488.59,
+ 0
+ ],
+ [
+ 1785884400000,
+ 488.5999999999999,
+ 0
+ ],
+ [
+ 1785888000000,
+ 488.63,
+ 0
+ ],
+ [
+ 1785891600000,
+ 488.68999999999994,
+ 0
+ ],
+ [
+ 1785895200000,
+ 486.16999999999996,
+ 0
+ ],
+ [
+ 1785898800000,
+ 484.93,
+ 0
+ ],
+ [
+ 1785902400000,
+ 484.1499999999999,
+ 0
+ ],
+ [
+ 1785906000000,
+ 483.60999999999984,
+ 0
+ ],
+ [
+ 1785909600000,
+ 483.2299999999999,
+ 0
+ ],
+ [
+ 1785913200000,
+ 482.96999999999997,
+ 0
+ ],
+ [
+ 1785916800000,
+ 482.7999999999999,
+ 0
+ ],
+ [
+ 1785920400000,
+ 482.71,
+ 0
+ ],
+ [
+ 1785924000000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1785927600000,
+ 482.64,
+ 0
+ ],
+ [
+ 1785931200000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1785934800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1785938400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1785942000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1785945600000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1785949200000,
+ 482.5999999999999,
+ 0
+ ],
+ [
+ 1785952800000,
+ 482.5999999999999,
+ 0
+ ],
+ [
+ 1785956400000,
+ 483.0599999999999,
+ 0
+ ],
+ [
+ 1785960000000,
+ 487.0599999999999,
+ 0
+ ],
+ [
+ 1785963600000,
+ 488.18999999999994,
+ 0
+ ],
+ [
+ 1785967200000,
+ 488.51,
+ 0
+ ],
+ [
+ 1785970800000,
+ 488.63,
+ 0
+ ],
+ [
+ 1785974400000,
+ 488.65999999999997,
+ 0
+ ],
+ [
+ 1785978000000,
+ 486.15999999999997,
+ 0
+ ],
+ [
+ 1785981600000,
+ 484.90999999999997,
+ 0
+ ],
+ [
+ 1785985200000,
+ 484.13,
+ 0
+ ],
+ [
+ 1785988800000,
+ 483.6,
+ 0
+ ],
+ [
+ 1785992400000,
+ 483.21,
+ 0
+ ],
+ [
+ 1785996000000,
+ 482.96,
+ 0
+ ],
+ [
+ 1785999600000,
+ 482.78999999999996,
+ 0
+ ],
+ [
+ 1786003200000,
+ 482.69999999999993,
+ 0
+ ],
+ [
+ 1786006800000,
+ 482.65999999999997,
+ 0
+ ],
+ [
+ 1786010400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786014000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786017600000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786021200000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786024800000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786028400000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1786032000000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1786035600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786039200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786042800000,
+ 482.7299999999999,
+ 0
+ ],
+ [
+ 1786046400000,
+ 485.09,
+ 0
+ ],
+ [
+ 1786050000000,
+ 487.44999999999993,
+ 0
+ ],
+ [
+ 1786053600000,
+ 488.3099999999999,
+ 0
+ ],
+ [
+ 1786057200000,
+ 488.59,
+ 0
+ ],
+ [
+ 1786060800000,
+ 488.66999999999996,
+ 0
+ ],
+ [
+ 1786064400000,
+ 486.14,
+ 0
+ ],
+ [
+ 1786068000000,
+ 484.90999999999997,
+ 0
+ ],
+ [
+ 1786071600000,
+ 484.13,
+ 0
+ ],
+ [
+ 1786075200000,
+ 483.6,
+ 0
+ ],
+ [
+ 1786078800000,
+ 483.21999999999997,
+ 0
+ ],
+ [
+ 1786082400000,
+ 482.96999999999997,
+ 0
+ ],
+ [
+ 1786086000000,
+ 482.8099999999999,
+ 0
+ ],
+ [
+ 1786089600000,
+ 482.71999999999997,
+ 0
+ ],
+ [
+ 1786093200000,
+ 482.68,
+ 0
+ ],
+ [
+ 1786096800000,
+ 482.65999999999997,
+ 0
+ ],
+ [
+ 1786100400000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786104000000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786107600000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786111200000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786114800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786118400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786122000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786125600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786129200000,
+ 482.84,
+ 0
+ ],
+ [
+ 1786132800000,
+ 487.09,
+ 0
+ ],
+ [
+ 1786136400000,
+ 488.21999999999997,
+ 0
+ ],
+ [
+ 1786140000000,
+ 488.51,
+ 0
+ ],
+ [
+ 1786143600000,
+ 488.60999999999984,
+ 0
+ ],
+ [
+ 1786147200000,
+ 488.71999999999997,
+ 0
+ ],
+ [
+ 1786150800000,
+ 488.61999999999995,
+ 0
+ ],
+ [
+ 1786154400000,
+ 486.19999999999993,
+ 0
+ ],
+ [
+ 1786158000000,
+ 484.93999999999994,
+ 0
+ ],
+ [
+ 1786161600000,
+ 484.16999999999996,
+ 0
+ ],
+ [
+ 1786165200000,
+ 483.63,
+ 0
+ ],
+ [
+ 1786168800000,
+ 483.23999999999995,
+ 0
+ ],
+ [
+ 1786172400000,
+ 482.9799999999999,
+ 0
+ ],
+ [
+ 1786176000000,
+ 482.81999999999994,
+ 0
+ ],
+ [
+ 1786179600000,
+ 482.71999999999997,
+ 0
+ ],
+ [
+ 1786183200000,
+ 482.68,
+ 0
+ ],
+ [
+ 1786186800000,
+ 482.65999999999997,
+ 0
+ ],
+ [
+ 1786190400000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786194000000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786197600000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786201200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786204800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786208400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786212000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786215600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786219200000,
+ 482.68,
+ 0
+ ],
+ [
+ 1786222800000,
+ 486.19999999999993,
+ 0
+ ],
+ [
+ 1786226400000,
+ 487.86999999999995,
+ 0
+ ],
+ [
+ 1786230000000,
+ 488.40999999999997,
+ 0
+ ],
+ [
+ 1786233600000,
+ 488.60999999999984,
+ 0
+ ],
+ [
+ 1786237200000,
+ 486.14,
+ 0
+ ],
+ [
+ 1786240800000,
+ 484.90999999999997,
+ 0
+ ],
+ [
+ 1786244400000,
+ 484.13,
+ 0
+ ],
+ [
+ 1786248000000,
+ 483.6,
+ 0
+ ],
+ [
+ 1786251600000,
+ 483.21,
+ 0
+ ],
+ [
+ 1786255200000,
+ 482.96999999999997,
+ 0
+ ],
+ [
+ 1786258800000,
+ 482.7999999999999,
+ 0
+ ],
+ [
+ 1786262400000,
+ 482.71,
+ 0
+ ],
+ [
+ 1786266000000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1786269600000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786273200000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786276800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786280400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786284000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786287600000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786291200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786294800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786298400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786302000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786305600000,
+ 482.65999999999997,
+ 0
+ ],
+ [
+ 1786309200000,
+ 485.81999999999994,
+ 0
+ ],
+ [
+ 1786312800000,
+ 487.74999999999994,
+ 0
+ ],
+ [
+ 1786316400000,
+ 488.43999999999994,
+ 0
+ ],
+ [
+ 1786320000000,
+ 488.53999999999996,
+ 0
+ ],
+ [
+ 1786323600000,
+ 488.6499999999999,
+ 0
+ ],
+ [
+ 1786327200000,
+ 486.18,
+ 0
+ ],
+ [
+ 1786330800000,
+ 484.93,
+ 0
+ ],
+ [
+ 1786334400000,
+ 484.15999999999997,
+ 0
+ ],
+ [
+ 1786338000000,
+ 483.60999999999984,
+ 0
+ ],
+ [
+ 1786341600000,
+ 483.2299999999999,
+ 0
+ ],
+ [
+ 1786345200000,
+ 482.96999999999997,
+ 0
+ ],
+ [
+ 1786348800000,
+ 482.8099999999999,
+ 0
+ ],
+ [
+ 1786352400000,
+ 482.71,
+ 0
+ ],
+ [
+ 1786356000000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1786359600000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786363200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786366800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786370400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786374000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786377600000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786381200000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786384800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786388400000,
+ 482.86999999999995,
+ 0
+ ],
+ [
+ 1786392000000,
+ 487.06999999999994,
+ 0
+ ],
+ [
+ 1786395600000,
+ 488.2299999999999,
+ 0
+ ],
+ [
+ 1786399200000,
+ 488.51,
+ 0
+ ],
+ [
+ 1786402800000,
+ 488.66999999999996,
+ 0
+ ],
+ [
+ 1786406400000,
+ 488.76,
+ 0
+ ],
+ [
+ 1786410000000,
+ 488.68,
+ 0
+ ],
+ [
+ 1786413600000,
+ 488.68999999999994,
+ 0
+ ],
+ [
+ 1786417200000,
+ 486.18,
+ 0
+ ],
+ [
+ 1786420800000,
+ 484.93999999999994,
+ 0
+ ],
+ [
+ 1786424400000,
+ 484.16999999999996,
+ 0
+ ],
+ [
+ 1786428000000,
+ 483.61999999999995,
+ 0
+ ],
+ [
+ 1786431600000,
+ 483.23999999999995,
+ 0
+ ],
+ [
+ 1786435200000,
+ 482.9799999999999,
+ 0
+ ],
+ [
+ 1786438800000,
+ 482.81999999999994,
+ 0
+ ],
+ [
+ 1786442400000,
+ 482.71999999999997,
+ 0
+ ],
+ [
+ 1786446000000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1786449600000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786453200000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786456800000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786460400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786464000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786467600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786471200000,
+ 482.5999999999999,
+ 0
+ ],
+ [
+ 1786474800000,
+ 484.98999999999995,
+ 0
+ ],
+ [
+ 1786478400000,
+ 487.4799999999999,
+ 0
+ ],
+ [
+ 1786482000000,
+ 488.36999999999995,
+ 0
+ ],
+ [
+ 1786485600000,
+ 488.5599999999999,
+ 0
+ ],
+ [
+ 1786489200000,
+ 488.5499999999999,
+ 0
+ ],
+ [
+ 1786492800000,
+ 488.60999999999984,
+ 0
+ ],
+ [
+ 1786496400000,
+ 488.68,
+ 0
+ ],
+ [
+ 1786500000000,
+ 486.15999999999997,
+ 0
+ ],
+ [
+ 1786503600000,
+ 484.93,
+ 0
+ ],
+ [
+ 1786507200000,
+ 484.15999999999997,
+ 0
+ ],
+ [
+ 1786510800000,
+ 483.61999999999995,
+ 0
+ ],
+ [
+ 1786514400000,
+ 483.23999999999995,
+ 0
+ ],
+ [
+ 1786518000000,
+ 482.9799999999999,
+ 0
+ ],
+ [
+ 1786521600000,
+ 482.81999999999994,
+ 0
+ ],
+ [
+ 1786525200000,
+ 482.71999999999997,
+ 0
+ ],
+ [
+ 1786528800000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1786532400000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786536000000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786539600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786543200000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786546800000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786550400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786554000000,
+ 482.8999999999999,
+ 0
+ ],
+ [
+ 1786557600000,
+ 487.0999999999999,
+ 0
+ ],
+ [
+ 1786561200000,
+ 488.32999999999987,
+ 0
+ ],
+ [
+ 1786564800000,
+ 488.56999999999994,
+ 0
+ ],
+ [
+ 1786568400000,
+ 488.64,
+ 0
+ ],
+ [
+ 1786572000000,
+ 488.71999999999997,
+ 0
+ ],
+ [
+ 1786575600000,
+ 488.6499999999999,
+ 0
+ ],
+ [
+ 1786579200000,
+ 488.5999999999999,
+ 0
+ ],
+ [
+ 1786582800000,
+ 488.51,
+ 0
+ ],
+ [
+ 1786586400000,
+ 488.43,
+ 0
+ ],
+ [
+ 1786590000000,
+ 486.14,
+ 0
+ ],
+ [
+ 1786593600000,
+ 484.93999999999994,
+ 0
+ ],
+ [
+ 1786597200000,
+ 484.15999999999997,
+ 0
+ ],
+ [
+ 1786600800000,
+ 483.61999999999995,
+ 0
+ ],
+ [
+ 1786604400000,
+ 483.23999999999995,
+ 0
+ ],
+ [
+ 1786608000000,
+ 482.9799999999999,
+ 0
+ ],
+ [
+ 1786611600000,
+ 482.8099999999999,
+ 0
+ ],
+ [
+ 1786615200000,
+ 482.71,
+ 0
+ ],
+ [
+ 1786618800000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1786622400000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786626000000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786629600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786633200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786636800000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786640400000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1786644000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786647600000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786651200000,
+ 482.8499999999999,
+ 0
+ ],
+ [
+ 1786654800000,
+ 486.99999999999994,
+ 0
+ ],
+ [
+ 1786658400000,
+ 488.21,
+ 0
+ ],
+ [
+ 1786662000000,
+ 488.48999999999995,
+ 0
+ ],
+ [
+ 1786665600000,
+ 488.68,
+ 0
+ ],
+ [
+ 1786669200000,
+ 488.6499999999999,
+ 0
+ ],
+ [
+ 1786672800000,
+ 487.91999999999996,
+ 0
+ ],
+ [
+ 1786676400000,
+ 486.63,
+ 0
+ ],
+ [
+ 1786680000000,
+ 485.3499999999999,
+ 0
+ ],
+ [
+ 1786683600000,
+ 484.40999999999997,
+ 0
+ ],
+ [
+ 1786687200000,
+ 483.78999999999996,
+ 0
+ ],
+ [
+ 1786690800000,
+ 483.35999999999984,
+ 0
+ ],
+ [
+ 1786694400000,
+ 483.0599999999999,
+ 0
+ ],
+ [
+ 1786698000000,
+ 482.85999999999984,
+ 0
+ ],
+ [
+ 1786701600000,
+ 482.7299999999999,
+ 0
+ ],
+ [
+ 1786705200000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1786708800000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786712400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786716000000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786719600000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1786723200000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786726800000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786730400000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1786734000000,
+ 482.85999999999984,
+ 0
+ ],
+ [
+ 1786737600000,
+ 487.0299999999999,
+ 0
+ ],
+ [
+ 1786741200000,
+ 488.2699999999999,
+ 0
+ ],
+ [
+ 1786744800000,
+ 488.5299999999999,
+ 0
+ ],
+ [
+ 1786748400000,
+ 488.68999999999994,
+ 0
+ ],
+ [
+ 1786752000000,
+ 488.68999999999994,
+ 0
+ ],
+ [
+ 1786755600000,
+ 488.71,
+ 0
+ ],
+ [
+ 1786759200000,
+ 488.73999999999995,
+ 0
+ ],
+ [
+ 1786762800000,
+ 486.26,
+ 0
+ ],
+ [
+ 1786766400000,
+ 484.98999999999995,
+ 0
+ ],
+ [
+ 1786770000000,
+ 484.18999999999994,
+ 0
+ ],
+ [
+ 1786773600000,
+ 483.6499999999999,
+ 0
+ ],
+ [
+ 1786777200000,
+ 483.26,
+ 0
+ ],
+ [
+ 1786780800000,
+ 482.99999999999994,
+ 0
+ ],
+ [
+ 1786784400000,
+ 482.81999999999994,
+ 0
+ ],
+ [
+ 1786788000000,
+ 482.71999999999997,
+ 0
+ ],
+ [
+ 1786791600000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1786795200000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786798800000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786802400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786806000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786809600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786813200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786816800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786820400000,
+ 482.8499999999999,
+ 0
+ ],
+ [
+ 1786824000000,
+ 487.0299999999999,
+ 0
+ ],
+ [
+ 1786827600000,
+ 488.0999999999999,
+ 0
+ ],
+ [
+ 1786831200000,
+ 488.63,
+ 0
+ ],
+ [
+ 1786834800000,
+ 488.5999999999999,
+ 0
+ ],
+ [
+ 1786838400000,
+ 488.63,
+ 0
+ ],
+ [
+ 1786842000000,
+ 488.60999999999984,
+ 0
+ ],
+ [
+ 1786845600000,
+ 486.2299999999999,
+ 0
+ ],
+ [
+ 1786849200000,
+ 484.96999999999997,
+ 0
+ ],
+ [
+ 1786852800000,
+ 484.18,
+ 0
+ ],
+ [
+ 1786856400000,
+ 483.63,
+ 0
+ ],
+ [
+ 1786860000000,
+ 483.24999999999994,
+ 0
+ ],
+ [
+ 1786863600000,
+ 482.9799999999999,
+ 0
+ ],
+ [
+ 1786867200000,
+ 482.81999999999994,
+ 0
+ ],
+ [
+ 1786870800000,
+ 482.71999999999997,
+ 0
+ ],
+ [
+ 1786874400000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1786878000000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786881600000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786885200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786888800000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786892400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786896000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786899600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786903200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786906800000,
+ 482.78999999999996,
+ 0
+ ],
+ [
+ 1786910400000,
+ 487.0999999999999,
+ 0
+ ],
+ [
+ 1786914000000,
+ 488.21999999999997,
+ 0
+ ],
+ [
+ 1786917600000,
+ 488.51,
+ 0
+ ],
+ [
+ 1786921200000,
+ 488.5299999999999,
+ 0
+ ],
+ [
+ 1786924800000,
+ 488.7299999999999,
+ 0
+ ],
+ [
+ 1786928400000,
+ 488.66999999999996,
+ 0
+ ],
+ [
+ 1786932000000,
+ 488.66999999999996,
+ 0
+ ],
+ [
+ 1786935600000,
+ 486.19999999999993,
+ 0
+ ],
+ [
+ 1786939200000,
+ 484.93999999999994,
+ 0
+ ],
+ [
+ 1786942800000,
+ 484.16999999999996,
+ 0
+ ],
+ [
+ 1786946400000,
+ 483.63,
+ 0
+ ],
+ [
+ 1786950000000,
+ 483.23999999999995,
+ 0
+ ],
+ [
+ 1786953600000,
+ 482.9799999999999,
+ 0
+ ],
+ [
+ 1786957200000,
+ 482.8099999999999,
+ 0
+ ],
+ [
+ 1786960800000,
+ 482.71999999999997,
+ 0
+ ],
+ [
+ 1786964400000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1786968000000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1786971600000,
+ 482.64,
+ 0
+ ],
+ [
+ 1786975200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786978800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1786982400000,
+ 482.5999999999999,
+ 0
+ ],
+ [
+ 1786986000000,
+ 482.5999999999999,
+ 0
+ ],
+ [
+ 1786989600000,
+ 485.0299999999999,
+ 0
+ ],
+ [
+ 1786993200000,
+ 487.5599999999999,
+ 0
+ ],
+ [
+ 1786996800000,
+ 488.34,
+ 0
+ ],
+ [
+ 1787000400000,
+ 488.63,
+ 0
+ ],
+ [
+ 1787004000000,
+ 488.61999999999995,
+ 0
+ ],
+ [
+ 1787007600000,
+ 488.60999999999984,
+ 0
+ ],
+ [
+ 1787011200000,
+ 488.64,
+ 0
+ ],
+ [
+ 1787014800000,
+ 488.5599999999999,
+ 0
+ ],
+ [
+ 1787018400000,
+ 487.8099999999999,
+ 0
+ ],
+ [
+ 1787022000000,
+ 485.84,
+ 0
+ ],
+ [
+ 1787025600000,
+ 484.7299999999999,
+ 0
+ ],
+ [
+ 1787029200000,
+ 484.0299999999999,
+ 0
+ ],
+ [
+ 1787032800000,
+ 483.5199999999999,
+ 0
+ ],
+ [
+ 1787036400000,
+ 483.18,
+ 0
+ ],
+ [
+ 1787040000000,
+ 482.93999999999994,
+ 0
+ ],
+ [
+ 1787043600000,
+ 482.7799999999999,
+ 0
+ ],
+ [
+ 1787047200000,
+ 482.71,
+ 0
+ ],
+ [
+ 1787050800000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1787054400000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1787058000000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1787061600000,
+ 482.64,
+ 0
+ ],
+ [
+ 1787065200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787068800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787072400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787076000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787079600000,
+ 482.8099999999999,
+ 0
+ ],
+ [
+ 1787083200000,
+ 487.1499999999999,
+ 0
+ ],
+ [
+ 1787086800000,
+ 488.28999999999996,
+ 0
+ ],
+ [
+ 1787090400000,
+ 488.5499999999999,
+ 0
+ ],
+ [
+ 1787094000000,
+ 488.5999999999999,
+ 0
+ ],
+ [
+ 1787097600000,
+ 488.71,
+ 0
+ ],
+ [
+ 1787101200000,
+ 488.68999999999994,
+ 0
+ ],
+ [
+ 1787104800000,
+ 486.19999999999993,
+ 0
+ ],
+ [
+ 1787108400000,
+ 484.96,
+ 0
+ ],
+ [
+ 1787112000000,
+ 484.16999999999996,
+ 0
+ ],
+ [
+ 1787115600000,
+ 483.61999999999995,
+ 0
+ ],
+ [
+ 1787119200000,
+ 483.23999999999995,
+ 0
+ ],
+ [
+ 1787122800000,
+ 482.9799999999999,
+ 0
+ ],
+ [
+ 1787126400000,
+ 482.8099999999999,
+ 0
+ ],
+ [
+ 1787130000000,
+ 482.71,
+ 0
+ ],
+ [
+ 1787133600000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1787137200000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1787140800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787144400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787148000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787151600000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1787155200000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1787158800000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1787162400000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1787166000000,
+ 482.60999999999984,
+ 0
+ ],
+ [
+ 1787169600000,
+ 482.8499999999999,
+ 0
+ ],
+ [
+ 1787173200000,
+ 487.07999999999987,
+ 0
+ ],
+ [
+ 1787176800000,
+ 488.18,
+ 0
+ ],
+ [
+ 1787180400000,
+ 488.46,
+ 0
+ ],
+ [
+ 1787184000000,
+ 488.61999999999995,
+ 0
+ ],
+ [
+ 1787187600000,
+ 488.65999999999997,
+ 0
+ ],
+ [
+ 1787191200000,
+ 486.18999999999994,
+ 0
+ ],
+ [
+ 1787194800000,
+ 484.93,
+ 0
+ ],
+ [
+ 1787198400000,
+ 484.15999999999997,
+ 0
+ ],
+ [
+ 1787202000000,
+ 483.61999999999995,
+ 0
+ ],
+ [
+ 1787205600000,
+ 483.2299999999999,
+ 0
+ ],
+ [
+ 1787209200000,
+ 482.9799999999999,
+ 0
+ ],
+ [
+ 1787212800000,
+ 482.8099999999999,
+ 0
+ ],
+ [
+ 1787216400000,
+ 482.71,
+ 0
+ ],
+ [
+ 1787220000000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1787223600000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1787227200000,
+ 482.64,
+ 0
+ ],
+ [
+ 1787230800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787234400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787238000000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787241600000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787245200000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787248800000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787252400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787256000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787259600000,
+ 482.8099999999999,
+ 0
+ ],
+ [
+ 1787263200000,
+ 487.10999999999984,
+ 0
+ ],
+ [
+ 1787266800000,
+ 488.21999999999997,
+ 0
+ ],
+ [
+ 1787270400000,
+ 488.5299999999999,
+ 0
+ ],
+ [
+ 1787274000000,
+ 487.88,
+ 0
+ ],
+ [
+ 1787277600000,
+ 485.88,
+ 0
+ ],
+ [
+ 1787281200000,
+ 484.74999999999994,
+ 0
+ ],
+ [
+ 1787284800000,
+ 484.0199999999999,
+ 0
+ ],
+ [
+ 1787288400000,
+ 483.5199999999999,
+ 0
+ ],
+ [
+ 1787292000000,
+ 483.16999999999996,
+ 0
+ ],
+ [
+ 1787295600000,
+ 482.93,
+ 0
+ ],
+ [
+ 1787299200000,
+ 482.7799999999999,
+ 0
+ ],
+ [
+ 1787302800000,
+ 482.68999999999994,
+ 0
+ ],
+ [
+ 1787306400000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1787310000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787313600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787317200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787320800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787324400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787328000000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787331600000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787335200000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787338800000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787342400000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787346000000,
+ 482.88,
+ 0
+ ],
+ [
+ 1787349600000,
+ 487.04999999999995,
+ 0
+ ],
+ [
+ 1787353200000,
+ 488.1499999999999,
+ 0
+ ],
+ [
+ 1787356800000,
+ 488.56999999999994,
+ 0
+ ],
+ [
+ 1787360400000,
+ 488.5999999999999,
+ 0
+ ],
+ [
+ 1787364000000,
+ 486.46999999999997,
+ 0
+ ],
+ [
+ 1787367600000,
+ 485.65999999999997,
+ 0
+ ],
+ [
+ 1787371200000,
+ 484.96,
+ 0
+ ],
+ [
+ 1787374800000,
+ 484.15999999999997,
+ 0
+ ],
+ [
+ 1787378400000,
+ 483.7599999999511,
+ -2147480957
+ ],
+ [
+ 1787382000000,
+ 483.35999999998603,
+ -2147480957
+ ],
+ [
+ 1787385600000,
+ 482.96,
+ 0
+ ],
+ [
+ 1787389200000,
+ 482.7799999999999,
+ 0
+ ],
+ [
+ 1787392800000,
+ 482.68999999999994,
+ 0
+ ],
+ [
+ 1787396400000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1787400000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787403600000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787407200000,
+ 482.6099999999999,
+ 0
+ ],
+ [
+ 1787410800000,
+ 482.6099999999999,
+ 0
+ ],
+ [
+ 1787414400000,
+ 482.6099999999999,
+ 0
+ ],
+ [
+ 1787418000000,
+ 482.6099999999999,
+ 0
+ ],
+ [
+ 1787421600000,
+ 482.59999999999997,
+ 0
+ ],
+ [
+ 1787425200000,
+ 482.59999999999997,
+ 0
+ ],
+ [
+ 1787428800000,
+ 484.56999999999994,
+ 0
+ ],
+ [
+ 1787432400000,
+ 485.01,
+ 0
+ ],
+ [
+ 1787436000000,
+ 487.76,
+ 0
+ ],
+ [
+ 1787439600000,
+ 488.38,
+ 0
+ ],
+ [
+ 1787443200000,
+ 488.61999999999995,
+ 0
+ ],
+ [
+ 1787446800000,
+ 487.0299999999999,
+ 0
+ ],
+ [
+ 1787450400000,
+ 485.49999999999994,
+ 0
+ ],
+ [
+ 1787454000000,
+ 484.51,
+ 0
+ ],
+ [
+ 1787457600000,
+ 483.8599999999999,
+ 0
+ ],
+ [
+ 1787461200000,
+ 483.40999999999997,
+ 0
+ ],
+ [
+ 1787464800000,
+ 483.09,
+ 0
+ ],
+ [
+ 1787468400000,
+ 482.88,
+ 0
+ ],
+ [
+ 1787472000000,
+ 482.76,
+ 0
+ ],
+ [
+ 1787475600000,
+ 482.68999999999994,
+ 0
+ ],
+ [
+ 1787479200000,
+ 482.65999999999997,
+ 0
+ ],
+ [
+ 1787482800000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1787486400000,
+ 482.64,
+ 0
+ ],
+ [
+ 1787490000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787493600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787497200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787500800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787504400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787508000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787511600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787515200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787518800000,
+ 482.54999999999995,
+ 0
+ ],
+ [
+ 1787522400000,
+ 486.06999999999994,
+ 0
+ ],
+ [
+ 1787526000000,
+ 487.04999999999995,
+ 0
+ ],
+ [
+ 1787529600000,
+ 485.41999999999996,
+ 0
+ ],
+ [
+ 1787533200000,
+ 484.43999999999994,
+ 0
+ ],
+ [
+ 1787536800000,
+ 483.78999999999996,
+ 0
+ ],
+ [
+ 1787540400000,
+ 483.3599999999999,
+ 0
+ ],
+ [
+ 1787544000000,
+ 483.0599999999999,
+ 0
+ ],
+ [
+ 1787547600000,
+ 482.8599999999999,
+ 0
+ ],
+ [
+ 1787551200000,
+ 482.7299999999999,
+ 0
+ ],
+ [
+ 1787554800000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1787558400000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1787562000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787565600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787569200000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787572800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787576400000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787580000000,
+ 482.6099999999999,
+ 0
+ ],
+ [
+ 1787583600000,
+ 482.6099999999999,
+ 0
+ ],
+ [
+ 1787587200000,
+ 482.6099999999999,
+ 0
+ ],
+ [
+ 1787590800000,
+ 482.6099999999999,
+ 0
+ ],
+ [
+ 1787594400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787598000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787601600000,
+ 482.68999999999994,
+ 0
+ ],
+ [
+ 1787605200000,
+ 486.2299999999999,
+ 0
+ ],
+ [
+ 1787608800000,
+ 487.93999999999994,
+ 0
+ ],
+ [
+ 1787612400000,
+ 488.49999999999994,
+ 0
+ ],
+ [
+ 1787616000000,
+ 488.63,
+ 0
+ ],
+ [
+ 1787619600000,
+ 488.71999999999997,
+ 0
+ ],
+ [
+ 1787623200000,
+ 486.2299999999999,
+ 0
+ ],
+ [
+ 1787626800000,
+ 484.9799999999999,
+ 0
+ ],
+ [
+ 1787630400000,
+ 484.18999999999994,
+ 0
+ ],
+ [
+ 1787634000000,
+ 483.6499999999999,
+ 0
+ ],
+ [
+ 1787637600000,
+ 483.2699999999999,
+ 0
+ ],
+ [
+ 1787641200000,
+ 482.99999999999994,
+ 0
+ ],
+ [
+ 1787644800000,
+ 482.8299999999999,
+ 0
+ ],
+ [
+ 1787648400000,
+ 482.7299999999999,
+ 0
+ ],
+ [
+ 1787652000000,
+ 482.68,
+ 0
+ ],
+ [
+ 1787655600000,
+ 482.65999999999997,
+ 0
+ ],
+ [
+ 1787659200000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1787662800000,
+ 482.64,
+ 0
+ ],
+ [
+ 1787666400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787670000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787673600000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787677200000,
+ 482.6099999999999,
+ 0
+ ],
+ [
+ 1787680800000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787684400000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787688000000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787691600000,
+ 482.94999999999993,
+ 0
+ ],
+ [
+ 1787695200000,
+ 487.0799999999999,
+ 0
+ ],
+ [
+ 1787698800000,
+ 488.1499999999999,
+ 0
+ ],
+ [
+ 1787702400000,
+ 488.6099999999999,
+ 0
+ ],
+ [
+ 1787706000000,
+ 488.66999999999996,
+ 0
+ ],
+ [
+ 1787709600000,
+ 486.16999999999996,
+ 0
+ ],
+ [
+ 1787713200000,
+ 484.93,
+ 0
+ ],
+ [
+ 1787716800000,
+ 484.1499999999999,
+ 0
+ ],
+ [
+ 1787720400000,
+ 483.6099999999999,
+ 0
+ ],
+ [
+ 1787724000000,
+ 483.2299999999999,
+ 0
+ ],
+ [
+ 1787727600000,
+ 482.96999999999997,
+ 0
+ ],
+ [
+ 1787731200000,
+ 482.79999999999995,
+ 0
+ ],
+ [
+ 1787734800000,
+ 482.71,
+ 0
+ ],
+ [
+ 1787738400000,
+ 482.66999999999996,
+ 0
+ ],
+ [
+ 1787742000000,
+ 482.6499999999999,
+ 0
+ ],
+ [
+ 1787745600000,
+ 482.64,
+ 0
+ ],
+ [
+ 1787749200000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787752800000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787756400000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787760000000,
+ 482.63,
+ 0
+ ],
+ [
+ 1787763600000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787767200000,
+ 482.61999999999995,
+ 0
+ ],
+ [
+ 1787770800000,
+ 483.03999999999996,
+ 0
+ ],
+ [
+ 1787774400000,
+ 487.06999999999994,
+ 0
+ ],
+ [
+ 1787778000000,
+ 488.19999999999993,
+ 0
+ ],
+ [
+ 1787781600000,
+ 488.5199999999999,
+ 0
+ ],
+ [
+ 1787785200000,
+ 488.65999999999997,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Elev.Inst.1Hour.0.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Elev.Inst.1Hour.0.Ccp-Rev.json
index 6d8506071..1eacf40ab 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Elev.Inst.1Hour.0.Ccp-Rev.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Elev.Inst.1Hour.0.Ccp-Rev.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T00:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T15:00:00+00:00",
+ "end": "2026-08-26T23:00:00+00:00",
"interval": "PT1H",
"interval-offset": 0,
"name": "EUFA.Elev.Inst.1Hour.0.Ccp-Rev",
"office-id": "SWT",
- "page": "MTc4MDI3MjAwMDAwMHx8MzM3fHwzMDAwMDA=",
+ "page": "MTc4MjY5MTIwMDAwMHx8MzM3fHwzMDAwMDA=",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 1528,
+ "total": 2088,
"units": "ft",
"value-columns": [
{
@@ -6601,7 +6601,7 @@
],
[
1785002400000,
- 585.7199999999999,
+ 585.7199999999998,
0
],
[
@@ -6756,7 +6756,7 @@
],
[
1785114000000,
- 585.4999999999999,
+ 585.4999999999998,
0
],
[
@@ -6781,12 +6781,12 @@
],
[
1785132000000,
- 585.4699999999999,
+ 585.4699999999998,
0
],
[
1785135600000,
- 585.4699999999999,
+ 585.4699999999998,
0
],
[
@@ -6811,22 +6811,22 @@
],
[
1785153600000,
- 585.4699999999999,
+ 585.4699999999998,
0
],
[
1785157200000,
- 585.4699999999999,
+ 585.4699999999998,
0
],
[
1785160800000,
- 585.4699999999999,
+ 585.4699999999998,
0
],
[
1785164400000,
- 585.4699999999999,
+ 585.4699999999998,
0
],
[
@@ -6841,7 +6841,7 @@
],
[
1785175200000,
- 585.4399999999999,
+ 585.4399999999998,
0
],
[
@@ -6996,22 +6996,22 @@
],
[
1785286800000,
- 585.2499999999999,
+ 585.2499999999998,
0
],
[
1785290400000,
- 585.2499999999999,
+ 585.2499999999998,
0
],
[
1785294000000,
- 585.2499999999999,
+ 585.2499999999998,
0
],
[
1785297600000,
- 585.2499999999999,
+ 585.2499999999998,
0
],
[
@@ -7086,7 +7086,7 @@
],
[
1785351600000,
- 585.2199999999999,
+ 585.2199999999998,
0
],
[
@@ -7096,12 +7096,12 @@
],
[
1785358800000,
- 585.1899999999999,
+ 585.1899999999998,
0
],
[
1785362400000,
- 585.1899999999999,
+ 585.1899999999998,
0
],
[
@@ -7366,7 +7366,7 @@
],
[
1785553200000,
- 584.9999999999999,
+ 584.9999999999998,
0
],
[
@@ -7376,17 +7376,17 @@
],
[
1785560400000,
- 584.9999999999999,
+ 584.9999999999998,
0
],
[
1785564000000,
- 584.9699999999999,
+ 584.9699999999998,
0
],
[
1785567600000,
- 584.9699999999999,
+ 584.9699999999998,
0
],
[
@@ -7401,7 +7401,7 @@
],
[
1785578400000,
- 584.9699999999999,
+ 584.9699999999998,
0
],
[
@@ -7416,7 +7416,7 @@
],
[
1785589200000,
- 584.9999999999999,
+ 584.9999999999998,
0
],
[
@@ -7446,7 +7446,7 @@
],
[
1785610800000,
- 584.9999999999999,
+ 584.9999999999998,
0
],
[
@@ -7461,12 +7461,12 @@
],
[
1785621600000,
- 584.9399999999999,
+ 584.9399999999998,
0
],
[
1785625200000,
- 584.9399999999999,
+ 584.9399999999998,
0
],
[
@@ -7668,6 +7668,2806 @@
1785769200000,
584.8299999999999,
0
+ ],
+ [
+ 1785772800000,
+ 584.8199999999999,
+ 0
+ ],
+ [
+ 1785776400000,
+ 584.8299999999999,
+ 0
+ ],
+ [
+ 1785780000000,
+ 584.8299999999999,
+ 0
+ ],
+ [
+ 1785783600000,
+ 584.8399999999999,
+ 0
+ ],
+ [
+ 1785787200000,
+ 584.8299999999999,
+ 0
+ ],
+ [
+ 1785790800000,
+ 584.8,
+ 0
+ ],
+ [
+ 1785794400000,
+ 584.78,
+ 0
+ ],
+ [
+ 1785798000000,
+ 584.77,
+ 0
+ ],
+ [
+ 1785801600000,
+ 584.7399999999999,
+ 0
+ ],
+ [
+ 1785805200000,
+ 584.7399999999999,
+ 0
+ ],
+ [
+ 1785808800000,
+ 584.78,
+ 0
+ ],
+ [
+ 1785812400000,
+ 584.77,
+ 0
+ ],
+ [
+ 1785816000000,
+ 584.77,
+ 0
+ ],
+ [
+ 1785819600000,
+ 584.77,
+ 0
+ ],
+ [
+ 1785823200000,
+ 584.77,
+ 0
+ ],
+ [
+ 1785826800000,
+ 584.7499999999998,
+ 0
+ ],
+ [
+ 1785830400000,
+ 584.7499999999998,
+ 0
+ ],
+ [
+ 1785834000000,
+ 584.7499999999998,
+ 0
+ ],
+ [
+ 1785837600000,
+ 584.76,
+ 0
+ ],
+ [
+ 1785841200000,
+ 584.76,
+ 0
+ ],
+ [
+ 1785844800000,
+ 584.76,
+ 0
+ ],
+ [
+ 1785848400000,
+ 584.76,
+ 0
+ ],
+ [
+ 1785852000000,
+ 584.7499999999998,
+ 0
+ ],
+ [
+ 1785855600000,
+ 584.7399999999999,
+ 0
+ ],
+ [
+ 1785859200000,
+ 584.7399999999999,
+ 0
+ ],
+ [
+ 1785862800000,
+ 584.7399999999999,
+ 0
+ ],
+ [
+ 1785866400000,
+ 584.7499999999998,
+ 0
+ ],
+ [
+ 1785870000000,
+ 584.76,
+ 0
+ ],
+ [
+ 1785873600000,
+ 584.7399999999999,
+ 0
+ ],
+ [
+ 1785877200000,
+ 584.7399999999999,
+ 0
+ ],
+ [
+ 1785880800000,
+ 584.73,
+ 0
+ ],
+ [
+ 1785884400000,
+ 584.6999999999999,
+ 0
+ ],
+ [
+ 1785888000000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785891600000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785895200000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785898800000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785902400000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785906000000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785909600000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785913200000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785916800000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785920400000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785924000000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785927600000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785931200000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785934800000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785938400000,
+ 584.67,
+ 0
+ ],
+ [
+ 1785942000000,
+ 584.67,
+ 0
+ ],
+ [
+ 1785945600000,
+ 584.67,
+ 0
+ ],
+ [
+ 1785949200000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785952800000,
+ 584.6899999999998,
+ 0
+ ],
+ [
+ 1785956400000,
+ 584.6899999999998,
+ 0
+ ],
+ [
+ 1785960000000,
+ 584.68,
+ 0
+ ],
+ [
+ 1785963600000,
+ 584.6599999999999,
+ 0
+ ],
+ [
+ 1785967200000,
+ 584.65,
+ 0
+ ],
+ [
+ 1785970800000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1785974400000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1785978000000,
+ 584.64,
+ 0
+ ],
+ [
+ 1785981600000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1785985200000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1785988800000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1785992400000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1785996000000,
+ 584.5999999999999,
+ 0
+ ],
+ [
+ 1785999600000,
+ 584.5999999999999,
+ 0
+ ],
+ [
+ 1786003200000,
+ 584.61,
+ 0
+ ],
+ [
+ 1786006800000,
+ 584.61,
+ 0
+ ],
+ [
+ 1786010400000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1786014000000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1786017600000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1786021200000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1786024800000,
+ 584.61,
+ 0
+ ],
+ [
+ 1786028400000,
+ 584.61,
+ 0
+ ],
+ [
+ 1786032000000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1786035600000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1786039200000,
+ 584.6199999999999,
+ 0
+ ],
+ [
+ 1786042800000,
+ 584.61,
+ 0
+ ],
+ [
+ 1786046400000,
+ 584.5899999999999,
+ 0
+ ],
+ [
+ 1786050000000,
+ 584.5799999999999,
+ 0
+ ],
+ [
+ 1786053600000,
+ 584.5699999999999,
+ 0
+ ],
+ [
+ 1786057200000,
+ 584.56,
+ 0
+ ],
+ [
+ 1786060800000,
+ 584.55,
+ 0
+ ],
+ [
+ 1786064400000,
+ 584.56,
+ 0
+ ],
+ [
+ 1786068000000,
+ 584.56,
+ 0
+ ],
+ [
+ 1786071600000,
+ 584.56,
+ 0
+ ],
+ [
+ 1786075200000,
+ 584.56,
+ 0
+ ],
+ [
+ 1786078800000,
+ 584.56,
+ 0
+ ],
+ [
+ 1786082400000,
+ 584.53,
+ 0
+ ],
+ [
+ 1786086000000,
+ 584.53,
+ 0
+ ],
+ [
+ 1786089600000,
+ 584.53,
+ 0
+ ],
+ [
+ 1786093200000,
+ 584.53,
+ 0
+ ],
+ [
+ 1786096800000,
+ 584.53,
+ 0
+ ],
+ [
+ 1786100400000,
+ 584.54,
+ 0
+ ],
+ [
+ 1786104000000,
+ 584.53,
+ 0
+ ],
+ [
+ 1786107600000,
+ 584.52,
+ 0
+ ],
+ [
+ 1786111200000,
+ 584.53,
+ 0
+ ],
+ [
+ 1786114800000,
+ 584.53,
+ 0
+ ],
+ [
+ 1786118400000,
+ 584.53,
+ 0
+ ],
+ [
+ 1786122000000,
+ 584.54,
+ 0
+ ],
+ [
+ 1786125600000,
+ 584.54,
+ 0
+ ],
+ [
+ 1786129200000,
+ 584.53,
+ 0
+ ],
+ [
+ 1786132800000,
+ 584.51,
+ 0
+ ],
+ [
+ 1786136400000,
+ 584.51,
+ 0
+ ],
+ [
+ 1786140000000,
+ 584.55,
+ 0
+ ],
+ [
+ 1786143600000,
+ 584.51,
+ 0
+ ],
+ [
+ 1786147200000,
+ 584.4699999999998,
+ 0
+ ],
+ [
+ 1786150800000,
+ 584.4999999999998,
+ 0
+ ],
+ [
+ 1786154400000,
+ 584.51,
+ 0
+ ],
+ [
+ 1786158000000,
+ 584.4599999999999,
+ 0
+ ],
+ [
+ 1786161600000,
+ 584.4399999999998,
+ 0
+ ],
+ [
+ 1786165200000,
+ 584.4499999999999,
+ 0
+ ],
+ [
+ 1786168800000,
+ 584.4499999999999,
+ 0
+ ],
+ [
+ 1786172400000,
+ 584.4399999999998,
+ 0
+ ],
+ [
+ 1786176000000,
+ 584.4599999999999,
+ 0
+ ],
+ [
+ 1786179600000,
+ 584.4599999999999,
+ 0
+ ],
+ [
+ 1786183200000,
+ 584.4399999999998,
+ 0
+ ],
+ [
+ 1786186800000,
+ 584.4399999999998,
+ 0
+ ],
+ [
+ 1786190400000,
+ 584.4399999999998,
+ 0
+ ],
+ [
+ 1786194000000,
+ 584.4399999999998,
+ 0
+ ],
+ [
+ 1786197600000,
+ 584.4399999999998,
+ 0
+ ],
+ [
+ 1786201200000,
+ 584.4399999999998,
+ 0
+ ],
+ [
+ 1786204800000,
+ 584.4599999999999,
+ 0
+ ],
+ [
+ 1786208400000,
+ 584.4699999999998,
+ 0
+ ],
+ [
+ 1786212000000,
+ 584.4699999999998,
+ 0
+ ],
+ [
+ 1786215600000,
+ 584.4599999999999,
+ 0
+ ],
+ [
+ 1786219200000,
+ 584.4499999999999,
+ 0
+ ],
+ [
+ 1786222800000,
+ 584.43,
+ 0
+ ],
+ [
+ 1786226400000,
+ 584.4099999999999,
+ 0
+ ],
+ [
+ 1786230000000,
+ 584.4,
+ 0
+ ],
+ [
+ 1786233600000,
+ 584.39,
+ 0
+ ],
+ [
+ 1786237200000,
+ 584.42,
+ 0
+ ],
+ [
+ 1786240800000,
+ 584.42,
+ 0
+ ],
+ [
+ 1786244400000,
+ 584.42,
+ 0
+ ],
+ [
+ 1786248000000,
+ 584.42,
+ 0
+ ],
+ [
+ 1786251600000,
+ 584.42,
+ 0
+ ],
+ [
+ 1786255200000,
+ 584.4,
+ 0
+ ],
+ [
+ 1786258800000,
+ 584.4,
+ 0
+ ],
+ [
+ 1786262400000,
+ 584.4,
+ 0
+ ],
+ [
+ 1786266000000,
+ 584.4,
+ 0
+ ],
+ [
+ 1786269600000,
+ 584.4,
+ 0
+ ],
+ [
+ 1786273200000,
+ 584.4,
+ 0
+ ],
+ [
+ 1786276800000,
+ 584.4,
+ 0
+ ],
+ [
+ 1786280400000,
+ 584.4,
+ 0
+ ],
+ [
+ 1786284000000,
+ 584.4099999999999,
+ 0
+ ],
+ [
+ 1786287600000,
+ 584.4099999999999,
+ 0
+ ],
+ [
+ 1786291200000,
+ 584.4099999999999,
+ 0
+ ],
+ [
+ 1786294800000,
+ 584.4099999999999,
+ 0
+ ],
+ [
+ 1786298400000,
+ 584.4099999999999,
+ 0
+ ],
+ [
+ 1786302000000,
+ 584.4,
+ 0
+ ],
+ [
+ 1786305600000,
+ 584.39,
+ 0
+ ],
+ [
+ 1786309200000,
+ 584.3699999999999,
+ 0
+ ],
+ [
+ 1786312800000,
+ 584.3499999999999,
+ 0
+ ],
+ [
+ 1786316400000,
+ 584.3499999999999,
+ 0
+ ],
+ [
+ 1786320000000,
+ 584.3499999999999,
+ 0
+ ],
+ [
+ 1786323600000,
+ 584.3299999999999,
+ 0
+ ],
+ [
+ 1786327200000,
+ 584.36,
+ 0
+ ],
+ [
+ 1786330800000,
+ 584.3499999999999,
+ 0
+ ],
+ [
+ 1786334400000,
+ 584.3399999999999,
+ 0
+ ],
+ [
+ 1786338000000,
+ 584.3299999999999,
+ 0
+ ],
+ [
+ 1786341600000,
+ 584.3299999999999,
+ 0
+ ],
+ [
+ 1786345200000,
+ 584.3199999999999,
+ 0
+ ],
+ [
+ 1786348800000,
+ 584.3199999999999,
+ 0
+ ],
+ [
+ 1786352400000,
+ 584.3299999999999,
+ 0
+ ],
+ [
+ 1786356000000,
+ 584.3299999999999,
+ 0
+ ],
+ [
+ 1786359600000,
+ 584.3299999999999,
+ 0
+ ],
+ [
+ 1786363200000,
+ 584.3399999999999,
+ 0
+ ],
+ [
+ 1786366800000,
+ 584.3499999999999,
+ 0
+ ],
+ [
+ 1786370400000,
+ 584.3399999999999,
+ 0
+ ],
+ [
+ 1786374000000,
+ 584.3499999999999,
+ 0
+ ],
+ [
+ 1786377600000,
+ 584.3499999999999,
+ 0
+ ],
+ [
+ 1786381200000,
+ 584.3499999999999,
+ 0
+ ],
+ [
+ 1786384800000,
+ 584.3299999999999,
+ 0
+ ],
+ [
+ 1786388400000,
+ 584.3199999999999,
+ 0
+ ],
+ [
+ 1786392000000,
+ 584.29,
+ 0
+ ],
+ [
+ 1786395600000,
+ 584.28,
+ 0
+ ],
+ [
+ 1786399200000,
+ 584.27,
+ 0
+ ],
+ [
+ 1786402800000,
+ 584.26,
+ 0
+ ],
+ [
+ 1786406400000,
+ 584.2499999999998,
+ 0
+ ],
+ [
+ 1786410000000,
+ 584.26,
+ 0
+ ],
+ [
+ 1786413600000,
+ 584.26,
+ 0
+ ],
+ [
+ 1786417200000,
+ 584.26,
+ 0
+ ],
+ [
+ 1786420800000,
+ 584.24,
+ 0
+ ],
+ [
+ 1786424400000,
+ 584.23,
+ 0
+ ],
+ [
+ 1786428000000,
+ 584.23,
+ 0
+ ],
+ [
+ 1786431600000,
+ 584.23,
+ 0
+ ],
+ [
+ 1786435200000,
+ 584.2199999999998,
+ 0
+ ],
+ [
+ 1786438800000,
+ 584.2199999999998,
+ 0
+ ],
+ [
+ 1786442400000,
+ 584.23,
+ 0
+ ],
+ [
+ 1786446000000,
+ 584.23,
+ 0
+ ],
+ [
+ 1786449600000,
+ 584.23,
+ 0
+ ],
+ [
+ 1786453200000,
+ 584.23,
+ 0
+ ],
+ [
+ 1786456800000,
+ 584.24,
+ 0
+ ],
+ [
+ 1786460400000,
+ 584.24,
+ 0
+ ],
+ [
+ 1786464000000,
+ 584.24,
+ 0
+ ],
+ [
+ 1786467600000,
+ 584.24,
+ 0
+ ],
+ [
+ 1786471200000,
+ 584.24,
+ 0
+ ],
+ [
+ 1786474800000,
+ 584.23,
+ 0
+ ],
+ [
+ 1786478400000,
+ 584.2199999999998,
+ 0
+ ],
+ [
+ 1786482000000,
+ 584.1999999999999,
+ 0
+ ],
+ [
+ 1786485600000,
+ 584.1999999999999,
+ 0
+ ],
+ [
+ 1786489200000,
+ 584.18,
+ 0
+ ],
+ [
+ 1786492800000,
+ 584.17,
+ 0
+ ],
+ [
+ 1786496400000,
+ 584.17,
+ 0
+ ],
+ [
+ 1786500000000,
+ 584.17,
+ 0
+ ],
+ [
+ 1786503600000,
+ 584.17,
+ 0
+ ],
+ [
+ 1786507200000,
+ 584.1599999999999,
+ 0
+ ],
+ [
+ 1786510800000,
+ 584.15,
+ 0
+ ],
+ [
+ 1786514400000,
+ 584.14,
+ 0
+ ],
+ [
+ 1786518000000,
+ 584.14,
+ 0
+ ],
+ [
+ 1786521600000,
+ 584.14,
+ 0
+ ],
+ [
+ 1786525200000,
+ 584.14,
+ 0
+ ],
+ [
+ 1786528800000,
+ 584.14,
+ 0
+ ],
+ [
+ 1786532400000,
+ 584.15,
+ 0
+ ],
+ [
+ 1786536000000,
+ 584.15,
+ 0
+ ],
+ [
+ 1786539600000,
+ 584.15,
+ 0
+ ],
+ [
+ 1786543200000,
+ 584.1599999999999,
+ 0
+ ],
+ [
+ 1786546800000,
+ 584.18,
+ 0
+ ],
+ [
+ 1786550400000,
+ 584.1899999999998,
+ 0
+ ],
+ [
+ 1786554000000,
+ 584.18,
+ 0
+ ],
+ [
+ 1786557600000,
+ 584.1599999999999,
+ 0
+ ],
+ [
+ 1786561200000,
+ 584.15,
+ 0
+ ],
+ [
+ 1786564800000,
+ 584.1299999999999,
+ 0
+ ],
+ [
+ 1786568400000,
+ 584.11,
+ 0
+ ],
+ [
+ 1786572000000,
+ 584.0999999999999,
+ 0
+ ],
+ [
+ 1786575600000,
+ 584.0899999999999,
+ 0
+ ],
+ [
+ 1786579200000,
+ 584.0799999999999,
+ 0
+ ],
+ [
+ 1786582800000,
+ 584.0699999999999,
+ 0
+ ],
+ [
+ 1786586400000,
+ 584.06,
+ 0
+ ],
+ [
+ 1786590000000,
+ 584.05,
+ 0
+ ],
+ [
+ 1786593600000,
+ 584.05,
+ 0
+ ],
+ [
+ 1786597200000,
+ 584.03,
+ 0
+ ],
+ [
+ 1786600800000,
+ 584.02,
+ 0
+ ],
+ [
+ 1786604400000,
+ 584.02,
+ 0
+ ],
+ [
+ 1786608000000,
+ 584.02,
+ 0
+ ],
+ [
+ 1786611600000,
+ 584.02,
+ 0
+ ],
+ [
+ 1786615200000,
+ 584.02,
+ 0
+ ],
+ [
+ 1786618800000,
+ 584.02,
+ 0
+ ],
+ [
+ 1786622400000,
+ 584.02,
+ 0
+ ],
+ [
+ 1786626000000,
+ 584.03,
+ 0
+ ],
+ [
+ 1786629600000,
+ 584.04,
+ 0
+ ],
+ [
+ 1786633200000,
+ 584.05,
+ 0
+ ],
+ [
+ 1786636800000,
+ 584.05,
+ 0
+ ],
+ [
+ 1786640400000,
+ 584.06,
+ 0
+ ],
+ [
+ 1786644000000,
+ 584.05,
+ 0
+ ],
+ [
+ 1786647600000,
+ 584.05,
+ 0
+ ],
+ [
+ 1786651200000,
+ 584.04,
+ 0
+ ],
+ [
+ 1786654800000,
+ 584.01,
+ 0
+ ],
+ [
+ 1786658400000,
+ 583.99,
+ 0
+ ],
+ [
+ 1786662000000,
+ 583.98,
+ 0
+ ],
+ [
+ 1786665600000,
+ 583.9699999999998,
+ 0
+ ],
+ [
+ 1786669200000,
+ 583.9599999999999,
+ 0
+ ],
+ [
+ 1786672800000,
+ 583.9499999999999,
+ 0
+ ],
+ [
+ 1786676400000,
+ 583.9399999999998,
+ 0
+ ],
+ [
+ 1786680000000,
+ 583.9399999999998,
+ 0
+ ],
+ [
+ 1786683600000,
+ 583.93,
+ 0
+ ],
+ [
+ 1786687200000,
+ 583.92,
+ 0
+ ],
+ [
+ 1786690800000,
+ 583.92,
+ 0
+ ],
+ [
+ 1786694400000,
+ 583.9099999999999,
+ 0
+ ],
+ [
+ 1786698000000,
+ 583.9099999999999,
+ 0
+ ],
+ [
+ 1786701600000,
+ 583.9099999999999,
+ 0
+ ],
+ [
+ 1786705200000,
+ 583.92,
+ 0
+ ],
+ [
+ 1786708800000,
+ 583.93,
+ 0
+ ],
+ [
+ 1786712400000,
+ 583.93,
+ 0
+ ],
+ [
+ 1786716000000,
+ 583.9399999999998,
+ 0
+ ],
+ [
+ 1786719600000,
+ 583.9499999999999,
+ 0
+ ],
+ [
+ 1786723200000,
+ 583.9499999999999,
+ 0
+ ],
+ [
+ 1786726800000,
+ 583.9499999999999,
+ 0
+ ],
+ [
+ 1786730400000,
+ 583.9499999999999,
+ 0
+ ],
+ [
+ 1786734000000,
+ 583.9399999999998,
+ 0
+ ],
+ [
+ 1786737600000,
+ 583.92,
+ 0
+ ],
+ [
+ 1786741200000,
+ 583.9,
+ 0
+ ],
+ [
+ 1786744800000,
+ 583.89,
+ 0
+ ],
+ [
+ 1786748400000,
+ 583.8699999999999,
+ 0
+ ],
+ [
+ 1786752000000,
+ 583.86,
+ 0
+ ],
+ [
+ 1786755600000,
+ 583.86,
+ 0
+ ],
+ [
+ 1786759200000,
+ 583.8399999999999,
+ 0
+ ],
+ [
+ 1786762800000,
+ 583.8399999999999,
+ 0
+ ],
+ [
+ 1786766400000,
+ 583.8399999999999,
+ 0
+ ],
+ [
+ 1786770000000,
+ 583.8299999999999,
+ 0
+ ],
+ [
+ 1786773600000,
+ 583.8199999999999,
+ 0
+ ],
+ [
+ 1786777200000,
+ 583.81,
+ 0
+ ],
+ [
+ 1786780800000,
+ 583.81,
+ 0
+ ],
+ [
+ 1786784400000,
+ 583.81,
+ 0
+ ],
+ [
+ 1786788000000,
+ 583.81,
+ 0
+ ],
+ [
+ 1786791600000,
+ 583.81,
+ 0
+ ],
+ [
+ 1786795200000,
+ 583.81,
+ 0
+ ],
+ [
+ 1786798800000,
+ 583.8,
+ 0
+ ],
+ [
+ 1786802400000,
+ 583.8,
+ 0
+ ],
+ [
+ 1786806000000,
+ 583.81,
+ 0
+ ],
+ [
+ 1786809600000,
+ 583.8199999999999,
+ 0
+ ],
+ [
+ 1786813200000,
+ 583.8199999999999,
+ 0
+ ],
+ [
+ 1786816800000,
+ 583.8199999999999,
+ 0
+ ],
+ [
+ 1786820400000,
+ 583.8199999999999,
+ 0
+ ],
+ [
+ 1786824000000,
+ 583.81,
+ 0
+ ],
+ [
+ 1786827600000,
+ 583.79,
+ 0
+ ],
+ [
+ 1786831200000,
+ 583.78,
+ 0
+ ],
+ [
+ 1786834800000,
+ 583.77,
+ 0
+ ],
+ [
+ 1786838400000,
+ 583.7499999999998,
+ 0
+ ],
+ [
+ 1786842000000,
+ 583.7499999999998,
+ 0
+ ],
+ [
+ 1786845600000,
+ 583.7499999999998,
+ 0
+ ],
+ [
+ 1786849200000,
+ 583.74,
+ 0
+ ],
+ [
+ 1786852800000,
+ 583.74,
+ 0
+ ],
+ [
+ 1786856400000,
+ 583.73,
+ 0
+ ],
+ [
+ 1786860000000,
+ 583.7199999999998,
+ 0
+ ],
+ [
+ 1786863600000,
+ 583.7199999999998,
+ 0
+ ],
+ [
+ 1786867200000,
+ 583.7199999999998,
+ 0
+ ],
+ [
+ 1786870800000,
+ 583.7199999999998,
+ 0
+ ],
+ [
+ 1786874400000,
+ 583.7199999999998,
+ 0
+ ],
+ [
+ 1786878000000,
+ 583.7199999999998,
+ 0
+ ],
+ [
+ 1786881600000,
+ 583.73,
+ 0
+ ],
+ [
+ 1786885200000,
+ 583.73,
+ 0
+ ],
+ [
+ 1786888800000,
+ 583.73,
+ 0
+ ],
+ [
+ 1786892400000,
+ 583.74,
+ 0
+ ],
+ [
+ 1786896000000,
+ 583.74,
+ 0
+ ],
+ [
+ 1786899600000,
+ 583.74,
+ 0
+ ],
+ [
+ 1786903200000,
+ 583.74,
+ 0
+ ],
+ [
+ 1786906800000,
+ 583.74,
+ 0
+ ],
+ [
+ 1786910400000,
+ 583.7199999999998,
+ 0
+ ],
+ [
+ 1786914000000,
+ 583.7099999999999,
+ 0
+ ],
+ [
+ 1786917600000,
+ 583.6899999999998,
+ 0
+ ],
+ [
+ 1786921200000,
+ 583.6899999999998,
+ 0
+ ],
+ [
+ 1786924800000,
+ 583.67,
+ 0
+ ],
+ [
+ 1786928400000,
+ 583.67,
+ 0
+ ],
+ [
+ 1786932000000,
+ 583.6599999999999,
+ 0
+ ],
+ [
+ 1786935600000,
+ 583.6599999999999,
+ 0
+ ],
+ [
+ 1786939200000,
+ 583.65,
+ 0
+ ],
+ [
+ 1786942800000,
+ 583.64,
+ 0
+ ],
+ [
+ 1786946400000,
+ 583.64,
+ 0
+ ],
+ [
+ 1786950000000,
+ 583.64,
+ 0
+ ],
+ [
+ 1786953600000,
+ 583.6299999999999,
+ 0
+ ],
+ [
+ 1786957200000,
+ 583.6199999999999,
+ 0
+ ],
+ [
+ 1786960800000,
+ 583.6199999999999,
+ 0
+ ],
+ [
+ 1786964400000,
+ 583.6199999999999,
+ 0
+ ],
+ [
+ 1786968000000,
+ 583.6199999999999,
+ 0
+ ],
+ [
+ 1786971600000,
+ 583.6199999999999,
+ 0
+ ],
+ [
+ 1786975200000,
+ 583.6199999999999,
+ 0
+ ],
+ [
+ 1786978800000,
+ 583.65,
+ 0
+ ],
+ [
+ 1786982400000,
+ 583.6299999999999,
+ 0
+ ],
+ [
+ 1786986000000,
+ 583.5999999999999,
+ 0
+ ],
+ [
+ 1786989600000,
+ 583.5899999999999,
+ 0
+ ],
+ [
+ 1786993200000,
+ 583.5799999999999,
+ 0
+ ],
+ [
+ 1786996800000,
+ 583.5699999999999,
+ 0
+ ],
+ [
+ 1787000400000,
+ 583.56,
+ 0
+ ],
+ [
+ 1787004000000,
+ 583.56,
+ 0
+ ],
+ [
+ 1787007600000,
+ 583.56,
+ 0
+ ],
+ [
+ 1787011200000,
+ 583.55,
+ 0
+ ],
+ [
+ 1787014800000,
+ 583.54,
+ 0
+ ],
+ [
+ 1787018400000,
+ 583.52,
+ 0
+ ],
+ [
+ 1787022000000,
+ 583.51,
+ 0
+ ],
+ [
+ 1787025600000,
+ 583.51,
+ 0
+ ],
+ [
+ 1787029200000,
+ 583.51,
+ 0
+ ],
+ [
+ 1787032800000,
+ 583.51,
+ 0
+ ],
+ [
+ 1787036400000,
+ 583.52,
+ 0
+ ],
+ [
+ 1787040000000,
+ 583.51,
+ 0
+ ],
+ [
+ 1787043600000,
+ 583.51,
+ 0
+ ],
+ [
+ 1787047200000,
+ 583.51,
+ 0
+ ],
+ [
+ 1787050800000,
+ 583.4999999999998,
+ 0
+ ],
+ [
+ 1787054400000,
+ 583.4999999999998,
+ 0
+ ],
+ [
+ 1787058000000,
+ 583.4999999999998,
+ 0
+ ],
+ [
+ 1787061600000,
+ 583.49,
+ 0
+ ],
+ [
+ 1787065200000,
+ 583.4999999999998,
+ 0
+ ],
+ [
+ 1787068800000,
+ 583.4999999999998,
+ 0
+ ],
+ [
+ 1787072400000,
+ 583.4999999999998,
+ 0
+ ],
+ [
+ 1787076000000,
+ 583.4999999999998,
+ 0
+ ],
+ [
+ 1787079600000,
+ 583.4999999999998,
+ 0
+ ],
+ [
+ 1787083200000,
+ 583.4799999999999,
+ 0
+ ],
+ [
+ 1787086800000,
+ 583.4799999999999,
+ 0
+ ],
+ [
+ 1787090400000,
+ 583.4799999999999,
+ 0
+ ],
+ [
+ 1787094000000,
+ 583.4699999999998,
+ 0
+ ],
+ [
+ 1787097600000,
+ 583.4499999999999,
+ 0
+ ],
+ [
+ 1787101200000,
+ 583.4499999999999,
+ 0
+ ],
+ [
+ 1787104800000,
+ 583.4499999999999,
+ 0
+ ],
+ [
+ 1787108400000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787112000000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787115600000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787119200000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787122800000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787126400000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787130000000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787133600000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787137200000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787140800000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787144400000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787148000000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787151600000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787155200000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787158800000,
+ 583.4399999999998,
+ 0
+ ],
+ [
+ 1787162400000,
+ 583.43,
+ 0
+ ],
+ [
+ 1787166000000,
+ 583.42,
+ 0
+ ],
+ [
+ 1787169600000,
+ 583.42,
+ 0
+ ],
+ [
+ 1787173200000,
+ 583.4,
+ 0
+ ],
+ [
+ 1787176800000,
+ 583.39,
+ 0
+ ],
+ [
+ 1787180400000,
+ 583.39,
+ 0
+ ],
+ [
+ 1787184000000,
+ 583.3699999999999,
+ 0
+ ],
+ [
+ 1787187600000,
+ 583.36,
+ 0
+ ],
+ [
+ 1787191200000,
+ 583.3699999999999,
+ 0
+ ],
+ [
+ 1787194800000,
+ 583.3699999999999,
+ 0
+ ],
+ [
+ 1787198400000,
+ 583.36,
+ 0
+ ],
+ [
+ 1787202000000,
+ 583.36,
+ 0
+ ],
+ [
+ 1787205600000,
+ 583.36,
+ 0
+ ],
+ [
+ 1787209200000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787212800000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787216400000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787220000000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787223600000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787227200000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787230800000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787234400000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787238000000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787241600000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787245200000,
+ 583.3499999999999,
+ 0
+ ],
+ [
+ 1787248800000,
+ 583.3399999999999,
+ 0
+ ],
+ [
+ 1787252400000,
+ 583.3299999999999,
+ 0
+ ],
+ [
+ 1787256000000,
+ 583.3299999999999,
+ 0
+ ],
+ [
+ 1787259600000,
+ 583.3199999999999,
+ 0
+ ],
+ [
+ 1787263200000,
+ 583.31,
+ 0
+ ],
+ [
+ 1787266800000,
+ 583.3,
+ 0
+ ],
+ [
+ 1787270400000,
+ 583.3,
+ 0
+ ],
+ [
+ 1787274000000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787277600000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787281200000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787284800000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787288400000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787292000000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787295600000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787299200000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787302800000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787306400000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787310000000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787313600000,
+ 583.3,
+ 0
+ ],
+ [
+ 1787317200000,
+ 583.3499999999999,
+ 0
+ ],
+ [
+ 1787320800000,
+ 583.3699999999999,
+ 0
+ ],
+ [
+ 1787324400000,
+ 583.36,
+ 0
+ ],
+ [
+ 1787328000000,
+ 583.36,
+ 0
+ ],
+ [
+ 1787331600000,
+ 583.36,
+ 0
+ ],
+ [
+ 1787335200000,
+ 583.36,
+ 0
+ ],
+ [
+ 1787338800000,
+ 583.3799999999999,
+ 0
+ ],
+ [
+ 1787342400000,
+ 583.36,
+ 0
+ ],
+ [
+ 1787346000000,
+ 583.3299999999999,
+ 0
+ ],
+ [
+ 1787349600000,
+ 583.31,
+ 0
+ ],
+ [
+ 1787353200000,
+ 583.3,
+ 0
+ ],
+ [
+ 1787356800000,
+ 583.3,
+ 0
+ ],
+ [
+ 1787360400000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787364000000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787367600000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787371200000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787374800000,
+ 583.3,
+ 0
+ ],
+ [
+ 1787378400000,
+ 583.2933333333331,
+ -2147480957
+ ],
+ [
+ 1787382000000,
+ 583.2866666666667,
+ -2147480957
+ ],
+ [
+ 1787385600000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787389200000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787392800000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787396400000,
+ 583.27,
+ 0
+ ],
+ [
+ 1787400000000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787403600000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787407200000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787410800000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787414400000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787418000000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787421600000,
+ 583.29,
+ 0
+ ],
+ [
+ 1787425200000,
+ 583.28,
+ 0
+ ],
+ [
+ 1787428800000,
+ 583.27,
+ 0
+ ],
+ [
+ 1787432400000,
+ 583.27,
+ 0
+ ],
+ [
+ 1787436000000,
+ 583.2499999999999,
+ 0
+ ],
+ [
+ 1787439600000,
+ 583.24,
+ 0
+ ],
+ [
+ 1787443200000,
+ 583.2199999999999,
+ 0
+ ],
+ [
+ 1787446800000,
+ 583.2199999999999,
+ 0
+ ],
+ [
+ 1787450400000,
+ 583.2299999999999,
+ 0
+ ],
+ [
+ 1787454000000,
+ 583.2299999999999,
+ 0
+ ],
+ [
+ 1787457600000,
+ 583.2299999999999,
+ 0
+ ],
+ [
+ 1787461200000,
+ 583.2299999999999,
+ 0
+ ],
+ [
+ 1787464800000,
+ 583.2199999999999,
+ 0
+ ],
+ [
+ 1787468400000,
+ 583.2099999999999,
+ 0
+ ],
+ [
+ 1787472000000,
+ 583.1999999999999,
+ 0
+ ],
+ [
+ 1787475600000,
+ 583.1999999999999,
+ 0
+ ],
+ [
+ 1787479200000,
+ 583.1999999999999,
+ 0
+ ],
+ [
+ 1787482800000,
+ 583.1999999999999,
+ 0
+ ],
+ [
+ 1787486400000,
+ 583.2099999999999,
+ 0
+ ],
+ [
+ 1787490000000,
+ 583.2099999999999,
+ 0
+ ],
+ [
+ 1787493600000,
+ 583.2099999999999,
+ 0
+ ],
+ [
+ 1787497200000,
+ 583.2099999999999,
+ 0
+ ],
+ [
+ 1787500800000,
+ 583.1999999999999,
+ 0
+ ],
+ [
+ 1787504400000,
+ 583.1899999999999,
+ 0
+ ],
+ [
+ 1787508000000,
+ 583.18,
+ 0
+ ],
+ [
+ 1787511600000,
+ 583.18,
+ 0
+ ],
+ [
+ 1787515200000,
+ 583.18,
+ 0
+ ],
+ [
+ 1787518800000,
+ 583.18,
+ 0
+ ],
+ [
+ 1787522400000,
+ 583.18,
+ 0
+ ],
+ [
+ 1787526000000,
+ 583.17,
+ 0
+ ],
+ [
+ 1787529600000,
+ 583.17,
+ 0
+ ],
+ [
+ 1787533200000,
+ 583.17,
+ 0
+ ],
+ [
+ 1787536800000,
+ 583.1599999999999,
+ 0
+ ],
+ [
+ 1787540400000,
+ 583.17,
+ 0
+ ],
+ [
+ 1787544000000,
+ 583.18,
+ 0
+ ],
+ [
+ 1787547600000,
+ 583.17,
+ 0
+ ],
+ [
+ 1787551200000,
+ 583.1599999999999,
+ 0
+ ],
+ [
+ 1787554800000,
+ 583.1599999999999,
+ 0
+ ],
+ [
+ 1787558400000,
+ 583.15,
+ 0
+ ],
+ [
+ 1787562000000,
+ 583.15,
+ 0
+ ],
+ [
+ 1787565600000,
+ 583.15,
+ 0
+ ],
+ [
+ 1787569200000,
+ 583.1599999999999,
+ 0
+ ],
+ [
+ 1787572800000,
+ 583.17,
+ 0
+ ],
+ [
+ 1787576400000,
+ 583.18,
+ 0
+ ],
+ [
+ 1787580000000,
+ 583.17,
+ 0
+ ],
+ [
+ 1787583600000,
+ 583.1599999999999,
+ 0
+ ],
+ [
+ 1787587200000,
+ 583.15,
+ 0
+ ],
+ [
+ 1787590800000,
+ 583.15,
+ 0
+ ],
+ [
+ 1787594400000,
+ 583.14,
+ 0
+ ],
+ [
+ 1787598000000,
+ 583.14,
+ 0
+ ],
+ [
+ 1787601600000,
+ 583.14,
+ 0
+ ],
+ [
+ 1787605200000,
+ 583.1299999999999,
+ 0
+ ],
+ [
+ 1787608800000,
+ 583.1199999999999,
+ 0
+ ],
+ [
+ 1787612400000,
+ 583.0999999999999,
+ 0
+ ],
+ [
+ 1787616000000,
+ 583.0899999999999,
+ 0
+ ],
+ [
+ 1787619600000,
+ 583.0799999999999,
+ 0
+ ],
+ [
+ 1787623200000,
+ 583.0899999999999,
+ 0
+ ],
+ [
+ 1787626800000,
+ 583.0899999999999,
+ 0
+ ],
+ [
+ 1787630400000,
+ 583.0899999999999,
+ 0
+ ],
+ [
+ 1787634000000,
+ 583.0899999999999,
+ 0
+ ],
+ [
+ 1787637600000,
+ 583.0899999999999,
+ 0
+ ],
+ [
+ 1787641200000,
+ 583.0999999999999,
+ 0
+ ],
+ [
+ 1787644800000,
+ 583.0899999999999,
+ 0
+ ],
+ [
+ 1787648400000,
+ 583.1199999999999,
+ 0
+ ],
+ [
+ 1787652000000,
+ 583.15,
+ 0
+ ],
+ [
+ 1787655600000,
+ 583.1199999999999,
+ 0
+ ],
+ [
+ 1787659200000,
+ 583.11,
+ 0
+ ],
+ [
+ 1787662800000,
+ 583.11,
+ 0
+ ],
+ [
+ 1787666400000,
+ 583.0999999999999,
+ 0
+ ],
+ [
+ 1787670000000,
+ 583.11,
+ 0
+ ],
+ [
+ 1787673600000,
+ 583.15,
+ 0
+ ],
+ [
+ 1787677200000,
+ 583.1599999999999,
+ 0
+ ],
+ [
+ 1787680800000,
+ 583.15,
+ 0
+ ],
+ [
+ 1787684400000,
+ 583.15,
+ 0
+ ],
+ [
+ 1787688000000,
+ 583.1299999999999,
+ 0
+ ],
+ [
+ 1787691600000,
+ 583.1199999999999,
+ 0
+ ],
+ [
+ 1787695200000,
+ 583.0999999999999,
+ 0
+ ],
+ [
+ 1787698800000,
+ 583.0899999999999,
+ 0
+ ],
+ [
+ 1787702400000,
+ 583.0799999999999,
+ 0
+ ],
+ [
+ 1787706000000,
+ 583.0699999999999,
+ 0
+ ],
+ [
+ 1787709600000,
+ 583.0799999999999,
+ 0
+ ],
+ [
+ 1787713200000,
+ 583.0799999999999,
+ 0
+ ],
+ [
+ 1787716800000,
+ 583.0699999999999,
+ 0
+ ],
+ [
+ 1787720400000,
+ 583.0699999999999,
+ 0
+ ],
+ [
+ 1787724000000,
+ 583.0699999999999,
+ 0
+ ],
+ [
+ 1787727600000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787731200000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787734800000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787738400000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787742000000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787745600000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787749200000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787752800000,
+ 583.05,
+ 0
+ ],
+ [
+ 1787756400000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787760000000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787763600000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787767200000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787770800000,
+ 583.06,
+ 0
+ ],
+ [
+ 1787774400000,
+ 583.05,
+ 0
+ ],
+ [
+ 1787778000000,
+ 583.04,
+ 0
+ ],
+ [
+ 1787781600000,
+ 583.03,
+ 0
+ ],
+ [
+ 1787785200000,
+ 583.01,
+ 0
]
],
"vertical-datum-info": {
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Evap.Total.~1Day.1Day.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Evap.Total.~1Day.1Day.Ccp-Rev.json
index 4a2a724e8..0afcac00d 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Evap.Total.~1Day.1Day.Ccp-Rev.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Evap.Total.~1Day.1Day.Ccp-Rev.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T12:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T12:00:00+00:00",
+ "end": "2026-08-26T12:00:00+00:00",
"interval": "PT0S",
"interval-offset": -2147483648,
"name": "EUFA.Evap.Total.~1Day.1Day.Ccp-Rev",
"office-id": "SWT",
- "page": "MTc4MTUyNDgwMDAwMHx8MTR8fDMwMDAwMA==",
+ "page": "MTc4NjM2MzIwMDAwMHx8MTR8fDMwMDAwMA==",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 64,
+ "total": 87,
"units": "in",
"value-columns": [
{
@@ -348,6 +348,121 @@
1785758400000,
0.2873753106124858,
0
+ ],
+ [
+ 1785844800000,
+ 0.35731465414334845,
+ 0
+ ],
+ [
+ 1785931200000,
+ 0.38385718028695553,
+ 0
+ ],
+ [
+ 1786017600000,
+ 0.3771887509638945,
+ 0
+ ],
+ [
+ 1786104000000,
+ 0.3805770634375091,
+ 0
+ ],
+ [
+ 1786190400000,
+ 0.24263810602760627,
+ 0
+ ],
+ [
+ 1786276800000,
+ 0.3539813448905993,
+ 0
+ ],
+ [
+ 1786363200000,
+ 0.378418066455361,
+ 0
+ ],
+ [
+ 1786449600000,
+ 0.3712888570275524,
+ 0
+ ],
+ [
+ 1786536000000,
+ 0.37474630370238704,
+ 0
+ ],
+ [
+ 1786622400000,
+ 0.3851798513933484,
+ 0
+ ],
+ [
+ 1786708800000,
+ 0.46488733686427974,
+ 0
+ ],
+ [
+ 1786795200000,
+ 0.4369037947247551,
+ 0
+ ],
+ [
+ 1786881600000,
+ 0.3816058061432829,
+ 0
+ ],
+ [
+ 1786968000000,
+ 0.37501098209166317,
+ 0
+ ],
+ [
+ 1787054400000,
+ 0.23577418543958473,
+ 0
+ ],
+ [
+ 1787140800000,
+ 0.4466902603175609,
+ 0
+ ],
+ [
+ 1787227200000,
+ 0.4597959714763611,
+ 0
+ ],
+ [
+ 1787313600000,
+ 0.3845421168822709,
+ 0
+ ],
+ [
+ 1787400000000,
+ 0.26421940566415236,
+ 0
+ ],
+ [
+ 1787486400000,
+ 0.18693453763867438,
+ 0
+ ],
+ [
+ 1787572800000,
+ 0.34555903589279685,
+ 0
+ ],
+ [
+ 1787659200000,
+ 0.13936051653080692,
+ 0
+ ],
+ [
+ 1787745600000,
+ 0.36177445366445105,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Flow-Res In.Ave.~1Day.1Day.Regi-Rev-Adjusted.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Flow-Res In.Ave.~1Day.1Day.Regi-Rev-Adjusted.json
index bc812cf9b..843bf9db7 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Flow-Res In.Ave.~1Day.1Day.Regi-Rev-Adjusted.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Flow-Res In.Ave.~1Day.1Day.Regi-Rev-Adjusted.json
@@ -1,7 +1,7 @@
{
"begin": "2026-06-01T05:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T05:00:00+00:00",
+ "end": "2026-08-26T05:00:00+00:00",
"interval": "PT0S",
"interval-offset": -2147483648,
"name": "EUFA.Flow-Res In.Ave.~1Day.1Day.Regi-Rev-Adjusted",
@@ -9,7 +9,7 @@
"page": "MTc4MDI5MDAwMDAwMHx8MTR8fDMwMDAwMA==",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 64,
+ "total": 87,
"units": "cfs",
"value-columns": [
{
@@ -291,12 +291,12 @@
],
[
1784782800000,
- 749.9999999999999,
+ 799.9999999999999,
-2147478653
],
[
1784869200000,
- 574.9999999999999,
+ 700.0,
-2147478653
],
[
@@ -306,47 +306,162 @@
],
[
1785042000000,
- 500.0,
+ 550.0,
-2147478653
],
[
1785128400000,
- 369.99999999999994,
+ 450.0,
-2147478653
],
[
1785214800000,
- 350.0,
+ 500.0,
-2147478653
],
[
1785301200000,
- 320.0,
+ 450.0,
-2147478653
],
[
1785387600000,
- 300.0,
+ 440.0,
-2147478653
],
[
1785474000000,
- 214.99999999999997,
+ 399.99999999999994,
-2147478653
],
[
1785560400000,
- 199.99999999999997,
+ 399.99999999999994,
-2147478653
],
[
1785646800000,
- 199.99999999999997,
+ 49.99999999999999,
-2147478653
],
[
1785733200000,
- 199.99999999999997,
+ 24.999999999999996,
+ -2147478653
+ ],
+ [
+ 1785819600000,
+ 10.0,
+ -2147478653
+ ],
+ [
+ 1785906000000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1785992400000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786078800000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786165200000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786251600000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786338000000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786424400000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786510800000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786597200000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786683600000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786770000000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786856400000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1786942800000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1787029200000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1787115600000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1787202000000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1787288400000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1787374800000,
+ 250.0,
+ -2147478653
+ ],
+ [
+ 1787461200000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1787547600000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1787634000000,
+ 5.0,
+ -2147478653
+ ],
+ [
+ 1787720400000,
+ 5.0,
-2147478653
]
]
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Flow-Res Out.Ave.~1Day.1Day.Rev-Regi-Flowgroup.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Flow-Res Out.Ave.~1Day.1Day.Rev-Regi-Flowgroup.json
index d9405d64b..a3f958b63 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Flow-Res Out.Ave.~1Day.1Day.Rev-Regi-Flowgroup.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Flow-Res Out.Ave.~1Day.1Day.Rev-Regi-Flowgroup.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T05:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T05:00:00+00:00",
+ "end": "2026-08-26T05:00:00+00:00",
"interval": "PT0S",
"interval-offset": -2147483648,
"name": "EUFA.Flow-Res Out.Ave.~1Day.1Day.Rev-Regi-Flowgroup",
"office-id": "SWT",
- "page": "MTc4MzkxODgwMDAwMHx8MTR8fDMwMDAwMA==",
+ "page": "MTc4NjMzODAwMDAwMHx8MTR8fDMwMDAwMA==",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 64,
+ "total": 87,
"units": "cfs",
"value-columns": [
{
@@ -336,7 +336,7 @@
],
[
1785560400000,
- -8455545.320924396,
+ 2808.9290756015007,
0
],
[
@@ -348,6 +348,121 @@
1785733200000,
2024.8164104418754,
0
+ ],
+ [
+ 1785819600000,
+ 2488.09499545155,
+ 0
+ ],
+ [
+ 1785906000000,
+ 3007.580998459959,
+ 0
+ ],
+ [
+ 1785992400000,
+ 2491.609812303284,
+ 0
+ ],
+ [
+ 1786078800000,
+ 2164.930788619517,
+ 0
+ ],
+ [
+ 1786165200000,
+ 2962.058923905386,
+ 0
+ ],
+ [
+ 1786251600000,
+ 1867.5270699964417,
+ 0
+ ],
+ [
+ 1786338000000,
+ 2274.3505634828252,
+ 0
+ ],
+ [
+ 1786424400000,
+ 3498.252928046367,
+ 0
+ ],
+ [
+ 1786510800000,
+ 3149.4856892447337,
+ 0
+ ],
+ [
+ 1786597200000,
+ 4428.261490111668,
+ 0
+ ],
+ [
+ 1786683600000,
+ 3003.990361137983,
+ 0
+ ],
+ [
+ 1786770000000,
+ 3526.22129166715,
+ 0
+ ],
+ [
+ 1786856400000,
+ 3032.6590299719837,
+ 0
+ ],
+ [
+ 1786942800000,
+ 3474.268659978492,
+ 0
+ ],
+ [
+ 1787029200000,
+ 3956.1216919480917,
+ 0
+ ],
+ [
+ 1787115600000,
+ 3016.0611846442416,
+ 0
+ ],
+ [
+ 1787202000000,
+ 2503.2981792651335,
+ 0
+ ],
+ [
+ 1787288400000,
+ 1891.198560603708,
+ 0
+ ],
+ [
+ 1787374800000,
+ 1987.7802921014918,
+ 0
+ ],
+ [
+ 1787461200000,
+ 1996.6458336439582,
+ 0
+ ],
+ [
+ 1787547600000,
+ 741.9654750972335,
+ 0
+ ],
+ [
+ 1787634000000,
+ 2360.95533013875,
+ 0
+ ],
+ [
+ 1787720400000,
+ 2008.28378168755,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Inc.Total.1Hour.1Hour.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Inc.Total.1Hour.1Hour.Ccp-Rev.json
index f206ae43a..5f452749e 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Inc.Total.1Hour.1Hour.Ccp-Rev.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Inc.Total.1Hour.1Hour.Ccp-Rev.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T00:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T15:00:00+00:00",
+ "end": "2026-08-26T23:00:00+00:00",
"interval": "PT1H",
"interval-offset": 0,
"name": "EUFA.Precip-Inc.Total.1Hour.1Hour.Ccp-Rev",
"office-id": "SWT",
- "page": "MTc4MzkwMDgwMDAwMHx8MzM3fHwzMDAwMDA=",
+ "page": "MTc4MDI3MjAwMDAwMHx8MzM3fHwzMDAwMDA=",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 1528,
+ "total": 2088,
"units": "in",
"value-columns": [
{
@@ -7668,6 +7668,2806 @@
1785769200000,
0.0,
0
+ ],
+ [
+ 1785772800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785776400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785780000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785783600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785787200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785790800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785794400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785798000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785801600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785805200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785808800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785812400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785816000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785819600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785823200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785826800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785830400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785834000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785837600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785841200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785844800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785848400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785852000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785855600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785859200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785862800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785866400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785870000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785873600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785877200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785880800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785884400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785888000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785891600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785895200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785898800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785902400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785906000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785909600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785913200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785916800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785920400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785924000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785927600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785931200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785934800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785938400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785942000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785945600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785949200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785952800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785956400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785960000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785963600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785967200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785970800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785974400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785978000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785981600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785985200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785988800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785992400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785996000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785999600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786003200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786006800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786010400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786014000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786017600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786021200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786024800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786028400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786032000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786035600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786039200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786042800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786046400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786050000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786053600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786057200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786060800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786064400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786068000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786071600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786075200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786078800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786082400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786086000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786089600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786093200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786096800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786100400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786104000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786107600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786111200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786114800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786118400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786122000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786125600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786129200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786132800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786136400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786140000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786143600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786147200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786150800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786154400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786158000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786161600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786165200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786168800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786172400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786176000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786179600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786183200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786186800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786190400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786194000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786197600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786201200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786204800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786208400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786212000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786215600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786219200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786222800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786226400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786230000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786233600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786237200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786240800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786244400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786248000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786251600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786255200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786258800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786262400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786266000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786269600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786273200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786276800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786280400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786284000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786287600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786291200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786294800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786298400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786302000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786305600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786309200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786312800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786316400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786320000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786323600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786327200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786330800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786334400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786338000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786341600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786345200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786348800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786352400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786356000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786359600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786363200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786366800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786370400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786374000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786377600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786381200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786384800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786388400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786392000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786395600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786399200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786402800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786406400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786410000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786413600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786417200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786420800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786424400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786428000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786431600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786435200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786438800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786442400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786446000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786449600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786453200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786456800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786460400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786464000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786467600000,
+ 0.07999999999999828,
+ 0
+ ],
+ [
+ 1786471200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786474800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786478400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786482000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786485600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786489200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786492800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786496400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786500000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786503600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786507200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786510800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786514400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786518000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786521600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786525200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786528800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786532400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786536000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786539600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786543200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786546800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786550400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786554000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786557600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786561200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786564800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786568400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786572000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786575600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786579200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786582800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786586400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786590000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786593600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786597200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786600800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786604400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786608000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786611600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786615200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786618800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786622400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786626000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786629600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786633200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786636800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786640400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786644000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786647600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786651200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786654800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786658400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786662000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786665600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786669200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786672800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786676400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786680000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786683600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786687200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786690800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786694400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786698000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786701600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786705200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786708800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786712400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786716000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786719600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786723200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786726800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786730400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786734000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786737600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786741200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786744800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786748400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786752000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786755600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786759200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786762800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786766400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786770000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786773600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786777200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786780800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786784400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786788000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786791600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786795200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786798800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786802400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786806000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786809600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786813200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786816800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786820400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786824000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786827600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786831200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786834800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786838400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786842000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786845600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786849200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786852800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786856400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786860000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786863600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786867200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786870800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786874400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786878000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786881600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786885200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786888800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786892400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786896000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786899600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786903200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786906800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786910400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786914000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786917600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786921200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786924800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786928400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786932000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786935600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786939200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786942800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786946400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786950000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786953600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786957200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786960800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786964400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786968000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786971600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786975200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786978800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786982400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786986000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786989600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786993200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786996800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787000400000,
+ 0.00999999999999801,
+ 0
+ ],
+ [
+ 1787004000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787007600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787011200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787014800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787018400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787022000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787025600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787029200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787032800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787036400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787040000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787043600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787047200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787050800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787054400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787058000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787061600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787065200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787068800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787072400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787076000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787079600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787083200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787086800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787090400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787094000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787097600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787101200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787104800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787108400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787112000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787115600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787119200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787122800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787126400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787130000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787133600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787137200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787140800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787144400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787148000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787151600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787155200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787158800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787162400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787166000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787169600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787173200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787176800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787180400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787184000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787187600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787191200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787194800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787198400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787202000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787205600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787209200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787212800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787216400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787220000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787223600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787227200000,
+ 0.010000000000001565,
+ 0
+ ],
+ [
+ 1787230800000,
+ 0.03999999999999914,
+ 0
+ ],
+ [
+ 1787234400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787238000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787241600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787245200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787248800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787252400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787256000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787259600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787263200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787266800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787270400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787274000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787277600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787281200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787284800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787288400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787292000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787295600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787299200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787302800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787306400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787310000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787313600000,
+ 0.05999999999999872,
+ 0
+ ],
+ [
+ 1787317200000,
+ 0.03000000000000824,
+ 0
+ ],
+ [
+ 1787320800000,
+ 0.03999999999999204,
+ 0
+ ],
+ [
+ 1787324400000,
+ 0.010000000000005116,
+ 0
+ ],
+ [
+ 1787328000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787331600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787335200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787338800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787342400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787346000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787349600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787353200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787356800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787360400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787364000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787367600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787371200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787374800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787378400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787382000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787385600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787389200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787392800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787396400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787400000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787403600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787407200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787410800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787414400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787418000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787421600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787425200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787428800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787432400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787436000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787439600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787443200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787446800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787450400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787454000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787457600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787461200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787464800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787468400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787472000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787475600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787479200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787482800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787486400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787490000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787493600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787497200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787500800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787504400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787508000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787511600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787515200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787518800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787522400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787526000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787529600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787533200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787536800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787540400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787544000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787547600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787551200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787554800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787558400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787562000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787565600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787569200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787572800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787576400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787580000000,
+ 0.00999999999999801,
+ 0
+ ],
+ [
+ 1787583600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787587200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787590800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787594400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787598000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787601600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787605200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787608800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787612400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787616000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787619600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787623200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787626800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787630400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787634000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787637600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787641200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787644800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787648400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787652000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787655600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787659200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787662800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787666400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787670000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787673600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787677200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787680800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787684400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787688000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787691600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787695200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787698800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787702400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787706000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787709600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787713200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787716800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787720400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787724000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787727600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787731200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787734800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787738400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787742000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787745600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787749200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787752800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787756400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787760000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787763600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787767200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787770800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787774400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787778000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787781600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787785200000,
+ 0.0,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Inc.Total.~1Day.1Day.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Inc.Total.~1Day.1Day.Ccp-Rev.json
index 77e18adf5..42e4335ae 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Inc.Total.~1Day.1Day.Ccp-Rev.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Inc.Total.~1Day.1Day.Ccp-Rev.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T12:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T12:00:00+00:00",
+ "end": "2026-08-26T12:00:00+00:00",
"interval": "PT0S",
"interval-offset": -2147483648,
"name": "EUFA.Precip-Inc.Total.~1Day.1Day.Ccp-Rev",
"office-id": "SWT",
- "page": "MTc4MjczNDQwMDAwMHx8MTR8fDMwMDAwMA==",
+ "page": "MTc4MTUyNDgwMDAwMHx8MTR8fDMwMDAwMA==",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 64,
+ "total": 87,
"units": "in",
"value-columns": [
{
@@ -348,6 +348,121 @@
1785758400000,
0.0,
0
+ ],
+ [
+ 1785844800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785931200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786017600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786104000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786190400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786276800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786363200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786449600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786536000000,
+ 0.08,
+ 0
+ ],
+ [
+ 1786622400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786708800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786795200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786881600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786968000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787054400000,
+ 0.01,
+ 0
+ ],
+ [
+ 1787140800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787227200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787313600000,
+ 0.04999999999999998,
+ 0
+ ],
+ [
+ 1787400000000,
+ 0.14,
+ 0
+ ],
+ [
+ 1787486400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787572800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787659200000,
+ 0.01,
+ 0
+ ],
+ [
+ 1787745600000,
+ 0.0,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Mean Areal.Total.~1Day.1Day.Metvue-Computed.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Mean Areal.Total.~1Day.1Day.Metvue-Computed.json
index c969b8175..96a339d35 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Mean Areal.Total.~1Day.1Day.Metvue-Computed.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Precip-Mean Areal.Total.~1Day.1Day.Metvue-Computed.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T12:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T12:00:00+00:00",
+ "end": "2026-08-26T12:00:00+00:00",
"interval": "PT0S",
"interval-offset": -2147483648,
"name": "EUFA.Precip-Mean Areal.Total.~1Day.1Day.Metvue-Computed",
"office-id": "SWT",
- "page": "MTc4NTE1MzYwMDAwMHx8OHx8MzAwMDAw",
+ "page": "MTc4MjczNDQwMDAwMHx8MTR8fDMwMDAwMA==",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 64,
+ "total": 87,
"units": "in",
"value-columns": [
{
@@ -348,6 +348,121 @@
1785758400000,
0.0,
0
+ ],
+ [
+ 1785844800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1785931200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786017600000,
+ 1.4151492732699998e-05,
+ 0
+ ],
+ [
+ 1786104000000,
+ 0.000656695637194,
+ 0
+ ],
+ [
+ 1786190400000,
+ 0.25081386954599993,
+ 0
+ ],
+ [
+ 1786276800000,
+ 0.00154888973897,
+ 0
+ ],
+ [
+ 1786363200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786449600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786536000000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786622400000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786708800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786795200000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786881600000,
+ 0.0,
+ 0
+ ],
+ [
+ 1786968000000,
+ 0.0212534787993,
+ 0
+ ],
+ [
+ 1787054400000,
+ 0.00756213119569,
+ 0
+ ],
+ [
+ 1787140800000,
+ 0.0,
+ 0
+ ],
+ [
+ 1787227200000,
+ 0.00457249825577,
+ 0
+ ],
+ [
+ 1787313600000,
+ 0.108740767573,
+ 0
+ ],
+ [
+ 1787400000000,
+ 0.344907332493,
+ 0
+ ],
+ [
+ 1787486400000,
+ 0.135989003162,
+ 0
+ ],
+ [
+ 1787572800000,
+ 0.0225180910615,
+ 0
+ ],
+ [
+ 1787659200000,
+ 0.0448382858889,
+ 0
+ ],
+ [
+ 1787745600000,
+ 0.0033170883653899997,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Speed-Wind.Inst.1Hour.0.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Speed-Wind.Inst.1Hour.0.Ccp-Rev.json
index 725309e8b..1cb47c9b7 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Speed-Wind.Inst.1Hour.0.Ccp-Rev.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Speed-Wind.Inst.1Hour.0.Ccp-Rev.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T00:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T15:00:00+00:00",
+ "end": "2026-08-26T23:00:00+00:00",
"interval": "PT1H",
"interval-offset": 0,
"name": "EUFA.Speed-Wind.Inst.1Hour.0.Ccp-Rev",
"office-id": "SWT",
- "page": "MTc4NTExMDQwMDAwMHx8MTg0fHwzMDAwMDA=",
+ "page": "MTc4MTQ4MTYwMDAwMHx8MzM3fHwzMDAwMDA=",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 1528,
+ "total": 2088,
"units": "mph",
"value-columns": [
{
@@ -7668,6 +7668,2806 @@
1785769200000,
5.5,
0
+ ],
+ [
+ 1785772800000,
+ 4.7,
+ 0
+ ],
+ [
+ 1785776400000,
+ 4.9,
+ 0
+ ],
+ [
+ 1785780000000,
+ 5.699999999999999,
+ 0
+ ],
+ [
+ 1785783600000,
+ 7.5,
+ 0
+ ],
+ [
+ 1785787200000,
+ 8.6,
+ 0
+ ],
+ [
+ 1785790800000,
+ 8.8,
+ 0
+ ],
+ [
+ 1785794400000,
+ 8.4,
+ 0
+ ],
+ [
+ 1785798000000,
+ 7.8,
+ 0
+ ],
+ [
+ 1785801600000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1785805200000,
+ 5.6,
+ 0
+ ],
+ [
+ 1785808800000,
+ 3.9,
+ 0
+ ],
+ [
+ 1785812400000,
+ 2.1,
+ 0
+ ],
+ [
+ 1785816000000,
+ 1.9,
+ 0
+ ],
+ [
+ 1785819600000,
+ 2.9,
+ 0
+ ],
+ [
+ 1785823200000,
+ 1.9,
+ 0
+ ],
+ [
+ 1785826800000,
+ 2.8,
+ 0
+ ],
+ [
+ 1785830400000,
+ 3.5,
+ 0
+ ],
+ [
+ 1785834000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1785837600000,
+ 5.4,
+ 0
+ ],
+ [
+ 1785841200000,
+ 4.3,
+ 0
+ ],
+ [
+ 1785844800000,
+ 4.7,
+ 0
+ ],
+ [
+ 1785848400000,
+ 5.5,
+ 0
+ ],
+ [
+ 1785852000000,
+ 6.699999999999999,
+ 0
+ ],
+ [
+ 1785855600000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1785859200000,
+ 7.9,
+ 0
+ ],
+ [
+ 1785862800000,
+ 7.3,
+ 0
+ ],
+ [
+ 1785866400000,
+ 6.699999999999999,
+ 0
+ ],
+ [
+ 1785870000000,
+ 4.8,
+ 0
+ ],
+ [
+ 1785873600000,
+ 8.7,
+ 0
+ ],
+ [
+ 1785877200000,
+ 8.1,
+ 0
+ ],
+ [
+ 1785880800000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1785884400000,
+ 6.699999999999999,
+ 0
+ ],
+ [
+ 1785888000000,
+ 5.9,
+ 0
+ ],
+ [
+ 1785891600000,
+ 5.3,
+ 0
+ ],
+ [
+ 1785895200000,
+ 4.4,
+ 0
+ ],
+ [
+ 1785898800000,
+ 5.9,
+ 0
+ ],
+ [
+ 1785902400000,
+ 2.7,
+ 0
+ ],
+ [
+ 1785906000000,
+ 4.4,
+ 0
+ ],
+ [
+ 1785909600000,
+ 4.5,
+ 0
+ ],
+ [
+ 1785913200000,
+ 4.1,
+ 0
+ ],
+ [
+ 1785916800000,
+ 4.9,
+ 0
+ ],
+ [
+ 1785920400000,
+ 6.3,
+ 0
+ ],
+ [
+ 1785924000000,
+ 5.4,
+ 0
+ ],
+ [
+ 1785927600000,
+ 4.8,
+ 0
+ ],
+ [
+ 1785931200000,
+ 4.6,
+ 0
+ ],
+ [
+ 1785934800000,
+ 4.1,
+ 0
+ ],
+ [
+ 1785938400000,
+ 5.9,
+ 0
+ ],
+ [
+ 1785942000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1785945600000,
+ 4.8,
+ 0
+ ],
+ [
+ 1785949200000,
+ 6.1,
+ 0
+ ],
+ [
+ 1785952800000,
+ 6.199999999999999,
+ 0
+ ],
+ [
+ 1785956400000,
+ 5.4,
+ 0
+ ],
+ [
+ 1785960000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1785963600000,
+ 4.8,
+ 0
+ ],
+ [
+ 1785967200000,
+ 7.1,
+ 0
+ ],
+ [
+ 1785970800000,
+ 6.5,
+ 0
+ ],
+ [
+ 1785974400000,
+ 4.8,
+ 0
+ ],
+ [
+ 1785978000000,
+ 3.5999999999999996,
+ 0
+ ],
+ [
+ 1785981600000,
+ 2.2,
+ 0
+ ],
+ [
+ 1785985200000,
+ 3.0999999999999996,
+ 0
+ ],
+ [
+ 1785988800000,
+ 3.9,
+ 0
+ ],
+ [
+ 1785992400000,
+ 1.7,
+ 0
+ ],
+ [
+ 1785996000000,
+ 3.0,
+ 0
+ ],
+ [
+ 1785999600000,
+ 5.699999999999999,
+ 0
+ ],
+ [
+ 1786003200000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786006800000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786010400000,
+ 5.199999999999999,
+ 0
+ ],
+ [
+ 1786014000000,
+ 4.5,
+ 0
+ ],
+ [
+ 1786017600000,
+ 4.1,
+ 0
+ ],
+ [
+ 1786021200000,
+ 5.4,
+ 0
+ ],
+ [
+ 1786024800000,
+ 5.9,
+ 0
+ ],
+ [
+ 1786028400000,
+ 5.699999999999999,
+ 0
+ ],
+ [
+ 1786032000000,
+ 6.9,
+ 0
+ ],
+ [
+ 1786035600000,
+ 7.4,
+ 0
+ ],
+ [
+ 1786039200000,
+ 8.5,
+ 0
+ ],
+ [
+ 1786042800000,
+ 9.2,
+ 0
+ ],
+ [
+ 1786046400000,
+ 5.6,
+ 0
+ ],
+ [
+ 1786050000000,
+ 5.4,
+ 0
+ ],
+ [
+ 1786053600000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786057200000,
+ 5.199999999999999,
+ 0
+ ],
+ [
+ 1786060800000,
+ 3.7,
+ 0
+ ],
+ [
+ 1786064400000,
+ 3.0999999999999996,
+ 0
+ ],
+ [
+ 1786068000000,
+ 2.1,
+ 0
+ ],
+ [
+ 1786071600000,
+ 1.9,
+ 0
+ ],
+ [
+ 1786075200000,
+ 2.5,
+ 0
+ ],
+ [
+ 1786078800000,
+ 3.2,
+ 0
+ ],
+ [
+ 1786082400000,
+ 2.4,
+ 0
+ ],
+ [
+ 1786086000000,
+ 3.3,
+ 0
+ ],
+ [
+ 1786089600000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786093200000,
+ 6.9,
+ 0
+ ],
+ [
+ 1786096800000,
+ 6.0,
+ 0
+ ],
+ [
+ 1786100400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786104000000,
+ 6.5,
+ 0
+ ],
+ [
+ 1786107600000,
+ 5.6,
+ 0
+ ],
+ [
+ 1786111200000,
+ 4.0,
+ 0
+ ],
+ [
+ 1786114800000,
+ 2.0,
+ 0
+ ],
+ [
+ 1786118400000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1786122000000,
+ 7.0,
+ 0
+ ],
+ [
+ 1786125600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786129200000,
+ 6.5,
+ 0
+ ],
+ [
+ 1786132800000,
+ 7.8,
+ 0
+ ],
+ [
+ 1786136400000,
+ 9.3,
+ 0
+ ],
+ [
+ 1786140000000,
+ 17.4,
+ 0
+ ],
+ [
+ 1786143600000,
+ 6.8,
+ 0
+ ],
+ [
+ 1786147200000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786150800000,
+ 2.9,
+ 0
+ ],
+ [
+ 1786154400000,
+ 3.5,
+ 0
+ ],
+ [
+ 1786158000000,
+ 2.7,
+ 0
+ ],
+ [
+ 1786161600000,
+ 5.699999999999999,
+ 0
+ ],
+ [
+ 1786165200000,
+ 4.9,
+ 0
+ ],
+ [
+ 1786168800000,
+ 3.4,
+ 0
+ ],
+ [
+ 1786172400000,
+ 3.7,
+ 0
+ ],
+ [
+ 1786176000000,
+ 2.9,
+ 0
+ ],
+ [
+ 1786179600000,
+ 2.4,
+ 0
+ ],
+ [
+ 1786183200000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786186800000,
+ 5.1,
+ 0
+ ],
+ [
+ 1786190400000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786194000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786197600000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786201200000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786204800000,
+ 4.4,
+ 0
+ ],
+ [
+ 1786208400000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786212000000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786215600000,
+ 6.4,
+ 0
+ ],
+ [
+ 1786219200000,
+ 6.699999999999999,
+ 0
+ ],
+ [
+ 1786222800000,
+ 6.1,
+ 0
+ ],
+ [
+ 1786226400000,
+ 4.5,
+ 0
+ ],
+ [
+ 1786230000000,
+ 8.9,
+ 0
+ ],
+ [
+ 1786233600000,
+ 9.4,
+ 0
+ ],
+ [
+ 1786237200000,
+ 8.2,
+ 0
+ ],
+ [
+ 1786240800000,
+ 6.8,
+ 0
+ ],
+ [
+ 1786244400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786248000000,
+ 5.4,
+ 0
+ ],
+ [
+ 1786251600000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786255200000,
+ 2.8,
+ 0
+ ],
+ [
+ 1786258800000,
+ 2.0,
+ 0
+ ],
+ [
+ 1786262400000,
+ 2.8,
+ 0
+ ],
+ [
+ 1786266000000,
+ 1.7999999999999998,
+ 0
+ ],
+ [
+ 1786269600000,
+ 2.1,
+ 0
+ ],
+ [
+ 1786273200000,
+ 3.0999999999999996,
+ 0
+ ],
+ [
+ 1786276800000,
+ 2.9,
+ 0
+ ],
+ [
+ 1786280400000,
+ 3.7,
+ 0
+ ],
+ [
+ 1786284000000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786287600000,
+ 5.1,
+ 0
+ ],
+ [
+ 1786291200000,
+ 5.699999999999999,
+ 0
+ ],
+ [
+ 1786294800000,
+ 4.9,
+ 0
+ ],
+ [
+ 1786298400000,
+ 6.1,
+ 0
+ ],
+ [
+ 1786302000000,
+ 6.699999999999999,
+ 0
+ ],
+ [
+ 1786305600000,
+ 4.7,
+ 0
+ ],
+ [
+ 1786309200000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786312800000,
+ 7.6,
+ 0
+ ],
+ [
+ 1786316400000,
+ 8.8,
+ 0
+ ],
+ [
+ 1786320000000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786323600000,
+ 7.699999999999999,
+ 0
+ ],
+ [
+ 1786327200000,
+ 7.4,
+ 0
+ ],
+ [
+ 1786330800000,
+ 6.8,
+ 0
+ ],
+ [
+ 1786334400000,
+ 5.9,
+ 0
+ ],
+ [
+ 1786338000000,
+ 5.699999999999999,
+ 0
+ ],
+ [
+ 1786341600000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786345200000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786348800000,
+ 5.6,
+ 0
+ ],
+ [
+ 1786352400000,
+ 5.4,
+ 0
+ ],
+ [
+ 1786356000000,
+ 4.4,
+ 0
+ ],
+ [
+ 1786359600000,
+ 4.4,
+ 0
+ ],
+ [
+ 1786363200000,
+ 3.5999999999999996,
+ 0
+ ],
+ [
+ 1786366800000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786370400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786374000000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786377600000,
+ 6.5,
+ 0
+ ],
+ [
+ 1786381200000,
+ 6.1,
+ 0
+ ],
+ [
+ 1786384800000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786388400000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786392000000,
+ 3.9,
+ 0
+ ],
+ [
+ 1786395600000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786399200000,
+ 7.6,
+ 0
+ ],
+ [
+ 1786402800000,
+ 8.0,
+ 0
+ ],
+ [
+ 1786406400000,
+ 8.299999999999999,
+ 0
+ ],
+ [
+ 1786410000000,
+ 9.1,
+ 0
+ ],
+ [
+ 1786413600000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786417200000,
+ 5.699999999999999,
+ 0
+ ],
+ [
+ 1786420800000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786424400000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786428000000,
+ 4.0,
+ 0
+ ],
+ [
+ 1786431600000,
+ 4.4,
+ 0
+ ],
+ [
+ 1786435200000,
+ 4.8,
+ 0
+ ],
+ [
+ 1786438800000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786442400000,
+ 5.1,
+ 0
+ ],
+ [
+ 1786446000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786449600000,
+ 4.3,
+ 0
+ ],
+ [
+ 1786453200000,
+ 4.3,
+ 0
+ ],
+ [
+ 1786456800000,
+ 4.5,
+ 0
+ ],
+ [
+ 1786460400000,
+ 4.7,
+ 0
+ ],
+ [
+ 1786464000000,
+ 5.699999999999999,
+ 0
+ ],
+ [
+ 1786467600000,
+ 7.6,
+ 0
+ ],
+ [
+ 1786471200000,
+ 9.1,
+ 0
+ ],
+ [
+ 1786474800000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786478400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786482000000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786485600000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786489200000,
+ 6.4,
+ 0
+ ],
+ [
+ 1786492800000,
+ 5.9,
+ 0
+ ],
+ [
+ 1786496400000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786500000000,
+ 4.0,
+ 0
+ ],
+ [
+ 1786503600000,
+ 4.8,
+ 0
+ ],
+ [
+ 1786507200000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786510800000,
+ 5.1,
+ 0
+ ],
+ [
+ 1786514400000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786518000000,
+ 5.6,
+ 0
+ ],
+ [
+ 1786521600000,
+ 4.7,
+ 0
+ ],
+ [
+ 1786525200000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786528800000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786532400000,
+ 3.9,
+ 0
+ ],
+ [
+ 1786536000000,
+ 3.5,
+ 0
+ ],
+ [
+ 1786539600000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786543200000,
+ 6.8,
+ 0
+ ],
+ [
+ 1786546800000,
+ 7.9,
+ 0
+ ],
+ [
+ 1786550400000,
+ 9.1,
+ 0
+ ],
+ [
+ 1786554000000,
+ 8.0,
+ 0
+ ],
+ [
+ 1786557600000,
+ 8.6,
+ 0
+ ],
+ [
+ 1786561200000,
+ 8.299999999999999,
+ 0
+ ],
+ [
+ 1786564800000,
+ 7.0,
+ 0
+ ],
+ [
+ 1786568400000,
+ 7.3,
+ 0
+ ],
+ [
+ 1786572000000,
+ 8.299999999999999,
+ 0
+ ],
+ [
+ 1786575600000,
+ 7.3,
+ 0
+ ],
+ [
+ 1786579200000,
+ 7.4,
+ 0
+ ],
+ [
+ 1786582800000,
+ 6.0,
+ 0
+ ],
+ [
+ 1786586400000,
+ 4.3,
+ 0
+ ],
+ [
+ 1786590000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786593600000,
+ 5.1,
+ 0
+ ],
+ [
+ 1786597200000,
+ 6.199999999999999,
+ 0
+ ],
+ [
+ 1786600800000,
+ 6.1,
+ 0
+ ],
+ [
+ 1786604400000,
+ 6.6,
+ 0
+ ],
+ [
+ 1786608000000,
+ 6.699999999999999,
+ 0
+ ],
+ [
+ 1786611600000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786615200000,
+ 6.4,
+ 0
+ ],
+ [
+ 1786618800000,
+ 4.5,
+ 0
+ ],
+ [
+ 1786622400000,
+ 4.1,
+ 0
+ ],
+ [
+ 1786626000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786629600000,
+ 8.0,
+ 0
+ ],
+ [
+ 1786633200000,
+ 10.6,
+ 0
+ ],
+ [
+ 1786636800000,
+ 10.899999999999999,
+ 0
+ ],
+ [
+ 1786640400000,
+ 11.0,
+ 0
+ ],
+ [
+ 1786644000000,
+ 10.1,
+ 0
+ ],
+ [
+ 1786647600000,
+ 9.9,
+ 0
+ ],
+ [
+ 1786651200000,
+ 9.9,
+ 0
+ ],
+ [
+ 1786654800000,
+ 10.5,
+ 0
+ ],
+ [
+ 1786658400000,
+ 9.2,
+ 0
+ ],
+ [
+ 1786662000000,
+ 10.399999999999999,
+ 0
+ ],
+ [
+ 1786665600000,
+ 10.1,
+ 0
+ ],
+ [
+ 1786669200000,
+ 9.0,
+ 0
+ ],
+ [
+ 1786672800000,
+ 8.2,
+ 0
+ ],
+ [
+ 1786676400000,
+ 6.9,
+ 0
+ ],
+ [
+ 1786680000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786683600000,
+ 6.1,
+ 0
+ ],
+ [
+ 1786687200000,
+ 6.4,
+ 0
+ ],
+ [
+ 1786690800000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786694400000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786698000000,
+ 5.4,
+ 0
+ ],
+ [
+ 1786701600000,
+ 6.6,
+ 0
+ ],
+ [
+ 1786705200000,
+ 6.9,
+ 0
+ ],
+ [
+ 1786708800000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786712400000,
+ 7.4,
+ 0
+ ],
+ [
+ 1786716000000,
+ 9.2,
+ 0
+ ],
+ [
+ 1786719600000,
+ 9.0,
+ 0
+ ],
+ [
+ 1786723200000,
+ 9.6,
+ 0
+ ],
+ [
+ 1786726800000,
+ 7.4,
+ 0
+ ],
+ [
+ 1786730400000,
+ 8.9,
+ 0
+ ],
+ [
+ 1786734000000,
+ 8.2,
+ 0
+ ],
+ [
+ 1786737600000,
+ 8.299999999999999,
+ 0
+ ],
+ [
+ 1786741200000,
+ 8.0,
+ 0
+ ],
+ [
+ 1786744800000,
+ 9.4,
+ 0
+ ],
+ [
+ 1786748400000,
+ 9.4,
+ 0
+ ],
+ [
+ 1786752000000,
+ 10.2,
+ 0
+ ],
+ [
+ 1786755600000,
+ 8.1,
+ 0
+ ],
+ [
+ 1786759200000,
+ 6.5,
+ 0
+ ],
+ [
+ 1786762800000,
+ 4.9,
+ 0
+ ],
+ [
+ 1786766400000,
+ 3.3,
+ 0
+ ],
+ [
+ 1786770000000,
+ 3.5999999999999996,
+ 0
+ ],
+ [
+ 1786773600000,
+ 3.7,
+ 0
+ ],
+ [
+ 1786777200000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786780800000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786784400000,
+ 2.2,
+ 0
+ ],
+ [
+ 1786788000000,
+ 2.5,
+ 0
+ ],
+ [
+ 1786791600000,
+ 3.0,
+ 0
+ ],
+ [
+ 1786795200000,
+ 3.4,
+ 0
+ ],
+ [
+ 1786798800000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786802400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786806000000,
+ 8.7,
+ 0
+ ],
+ [
+ 1786809600000,
+ 7.8,
+ 0
+ ],
+ [
+ 1786813200000,
+ 6.9,
+ 0
+ ],
+ [
+ 1786816800000,
+ 6.199999999999999,
+ 0
+ ],
+ [
+ 1786820400000,
+ 7.0,
+ 0
+ ],
+ [
+ 1786824000000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1786827600000,
+ 7.3,
+ 0
+ ],
+ [
+ 1786831200000,
+ 8.1,
+ 0
+ ],
+ [
+ 1786834800000,
+ 6.8,
+ 0
+ ],
+ [
+ 1786838400000,
+ 7.8,
+ 0
+ ],
+ [
+ 1786842000000,
+ 6.9,
+ 0
+ ],
+ [
+ 1786845600000,
+ 4.3,
+ 0
+ ],
+ [
+ 1786849200000,
+ 4.7,
+ 0
+ ],
+ [
+ 1786852800000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786856400000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786860000000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786863600000,
+ 4.3,
+ 0
+ ],
+ [
+ 1786867200000,
+ 3.5,
+ 0
+ ],
+ [
+ 1786870800000,
+ 3.2,
+ 0
+ ],
+ [
+ 1786874400000,
+ 3.3,
+ 0
+ ],
+ [
+ 1786878000000,
+ 3.4,
+ 0
+ ],
+ [
+ 1786881600000,
+ 3.9,
+ 0
+ ],
+ [
+ 1786885200000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786888800000,
+ 8.299999999999999,
+ 0
+ ],
+ [
+ 1786892400000,
+ 8.8,
+ 0
+ ],
+ [
+ 1786896000000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786899600000,
+ 6.199999999999999,
+ 0
+ ],
+ [
+ 1786903200000,
+ 8.8,
+ 0
+ ],
+ [
+ 1786906800000,
+ 9.8,
+ 0
+ ],
+ [
+ 1786910400000,
+ 9.7,
+ 0
+ ],
+ [
+ 1786914000000,
+ 11.5,
+ 0
+ ],
+ [
+ 1786917600000,
+ 10.399999999999999,
+ 0
+ ],
+ [
+ 1786921200000,
+ 9.7,
+ 0
+ ],
+ [
+ 1786924800000,
+ 6.5,
+ 0
+ ],
+ [
+ 1786928400000,
+ 4.0,
+ 0
+ ],
+ [
+ 1786932000000,
+ 3.3,
+ 0
+ ],
+ [
+ 1786935600000,
+ 3.0,
+ 0
+ ],
+ [
+ 1786939200000,
+ 2.0,
+ 0
+ ],
+ [
+ 1786942800000,
+ 4.7,
+ 0
+ ],
+ [
+ 1786946400000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1786950000000,
+ 2.5,
+ 0
+ ],
+ [
+ 1786953600000,
+ 2.5,
+ 0
+ ],
+ [
+ 1786957200000,
+ 1.1,
+ 0
+ ],
+ [
+ 1786960800000,
+ 2.3,
+ 0
+ ],
+ [
+ 1786964400000,
+ 0.3,
+ 0
+ ],
+ [
+ 1786968000000,
+ 0.6,
+ 0
+ ],
+ [
+ 1786971600000,
+ 0.6,
+ 0
+ ],
+ [
+ 1786975200000,
+ 0.6,
+ 0
+ ],
+ [
+ 1786978800000,
+ 14.399999999999999,
+ 0
+ ],
+ [
+ 1786982400000,
+ 10.899999999999999,
+ 0
+ ],
+ [
+ 1786986000000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786989600000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786993200000,
+ 7.0,
+ 0
+ ],
+ [
+ 1786996800000,
+ 4.1,
+ 0
+ ],
+ [
+ 1787000400000,
+ 3.7,
+ 0
+ ],
+ [
+ 1787004000000,
+ 6.6,
+ 0
+ ],
+ [
+ 1787007600000,
+ 9.9,
+ 0
+ ],
+ [
+ 1787011200000,
+ 8.7,
+ 0
+ ],
+ [
+ 1787014800000,
+ 7.3,
+ 0
+ ],
+ [
+ 1787018400000,
+ 3.5999999999999996,
+ 0
+ ],
+ [
+ 1787022000000,
+ 1.4,
+ 0
+ ],
+ [
+ 1787025600000,
+ 2.0,
+ 0
+ ],
+ [
+ 1787029200000,
+ 1.2999999999999998,
+ 0
+ ],
+ [
+ 1787032800000,
+ 0.4,
+ 0
+ ],
+ [
+ 1787036400000,
+ 2.3,
+ 0
+ ],
+ [
+ 1787040000000,
+ 0.6,
+ 0
+ ],
+ [
+ 1787043600000,
+ 0.8,
+ 0
+ ],
+ [
+ 1787047200000,
+ 1.0,
+ 0
+ ],
+ [
+ 1787050800000,
+ 2.0,
+ 0
+ ],
+ [
+ 1787054400000,
+ 3.5999999999999996,
+ 0
+ ],
+ [
+ 1787058000000,
+ 5.4,
+ 0
+ ],
+ [
+ 1787061600000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1787065200000,
+ 5.9,
+ 0
+ ],
+ [
+ 1787068800000,
+ 3.3,
+ 0
+ ],
+ [
+ 1787072400000,
+ 3.5,
+ 0
+ ],
+ [
+ 1787076000000,
+ 6.1,
+ 0
+ ],
+ [
+ 1787079600000,
+ 5.4,
+ 0
+ ],
+ [
+ 1787083200000,
+ 6.1,
+ 0
+ ],
+ [
+ 1787086800000,
+ 7.0,
+ 0
+ ],
+ [
+ 1787090400000,
+ 6.9,
+ 0
+ ],
+ [
+ 1787094000000,
+ 8.0,
+ 0
+ ],
+ [
+ 1787097600000,
+ 5.699999999999999,
+ 0
+ ],
+ [
+ 1787101200000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787104800000,
+ 2.3,
+ 0
+ ],
+ [
+ 1787108400000,
+ 4.2,
+ 0
+ ],
+ [
+ 1787112000000,
+ 5.9,
+ 0
+ ],
+ [
+ 1787115600000,
+ 6.0,
+ 0
+ ],
+ [
+ 1787119200000,
+ 6.699999999999999,
+ 0
+ ],
+ [
+ 1787122800000,
+ 5.199999999999999,
+ 0
+ ],
+ [
+ 1787126400000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787130000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1787133600000,
+ 4.2,
+ 0
+ ],
+ [
+ 1787137200000,
+ 3.9,
+ 0
+ ],
+ [
+ 1787140800000,
+ 4.5,
+ 0
+ ],
+ [
+ 1787144400000,
+ 4.6,
+ 0
+ ],
+ [
+ 1787148000000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1787151600000,
+ 9.4,
+ 0
+ ],
+ [
+ 1787155200000,
+ 10.3,
+ 0
+ ],
+ [
+ 1787158800000,
+ 8.9,
+ 0
+ ],
+ [
+ 1787162400000,
+ 10.2,
+ 0
+ ],
+ [
+ 1787166000000,
+ 7.9,
+ 0
+ ],
+ [
+ 1787169600000,
+ 9.0,
+ 0
+ ],
+ [
+ 1787173200000,
+ 9.6,
+ 0
+ ],
+ [
+ 1787176800000,
+ 6.3,
+ 0
+ ],
+ [
+ 1787180400000,
+ 6.9,
+ 0
+ ],
+ [
+ 1787184000000,
+ 3.3,
+ 0
+ ],
+ [
+ 1787187600000,
+ 4.1,
+ 0
+ ],
+ [
+ 1787191200000,
+ 2.8,
+ 0
+ ],
+ [
+ 1787194800000,
+ 4.1,
+ 0
+ ],
+ [
+ 1787198400000,
+ 8.5,
+ 0
+ ],
+ [
+ 1787202000000,
+ 3.7,
+ 0
+ ],
+ [
+ 1787205600000,
+ 3.5999999999999996,
+ 0
+ ],
+ [
+ 1787209200000,
+ 2.3,
+ 0
+ ],
+ [
+ 1787212800000,
+ 2.2,
+ 0
+ ],
+ [
+ 1787216400000,
+ 0.8999999999999999,
+ 0
+ ],
+ [
+ 1787220000000,
+ 3.2,
+ 0
+ ],
+ [
+ 1787223600000,
+ 3.8,
+ 0
+ ],
+ [
+ 1787227200000,
+ 2.8,
+ 0
+ ],
+ [
+ 1787230800000,
+ 3.0999999999999996,
+ 0
+ ],
+ [
+ 1787234400000,
+ 2.7,
+ 0
+ ],
+ [
+ 1787238000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787241600000,
+ 4.8,
+ 0
+ ],
+ [
+ 1787245200000,
+ 5.9,
+ 0
+ ],
+ [
+ 1787248800000,
+ 5.199999999999999,
+ 0
+ ],
+ [
+ 1787252400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1787256000000,
+ 6.699999999999999,
+ 0
+ ],
+ [
+ 1787259600000,
+ 7.5,
+ 0
+ ],
+ [
+ 1787263200000,
+ 7.6,
+ 0
+ ],
+ [
+ 1787266800000,
+ 7.8,
+ 0
+ ],
+ [
+ 1787270400000,
+ 5.9,
+ 0
+ ],
+ [
+ 1787274000000,
+ 2.0,
+ 0
+ ],
+ [
+ 1787277600000,
+ 1.0,
+ 0
+ ],
+ [
+ 1787281200000,
+ 2.5,
+ 0
+ ],
+ [
+ 1787284800000,
+ 3.0999999999999996,
+ 0
+ ],
+ [
+ 1787288400000,
+ 1.4,
+ 0
+ ],
+ [
+ 1787292000000,
+ 2.7,
+ 0
+ ],
+ [
+ 1787295600000,
+ 1.7999999999999998,
+ 0
+ ],
+ [
+ 1787299200000,
+ 4.2,
+ 0
+ ],
+ [
+ 1787302800000,
+ 6.0,
+ 0
+ ],
+ [
+ 1787306400000,
+ 6.1,
+ 0
+ ],
+ [
+ 1787310000000,
+ 3.3,
+ 0
+ ],
+ [
+ 1787313600000,
+ 9.7,
+ 0
+ ],
+ [
+ 1787317200000,
+ 12.5,
+ 0
+ ],
+ [
+ 1787320800000,
+ 13.399999999999999,
+ 0
+ ],
+ [
+ 1787324400000,
+ 9.8,
+ 0
+ ],
+ [
+ 1787328000000,
+ 6.699999999999999,
+ 0
+ ],
+ [
+ 1787331600000,
+ 5.9,
+ 0
+ ],
+ [
+ 1787335200000,
+ 5.699999999999999,
+ 0
+ ],
+ [
+ 1787338800000,
+ 6.6,
+ 0
+ ],
+ [
+ 1787342400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1787346000000,
+ 4.4,
+ 0
+ ],
+ [
+ 1787349600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787353200000,
+ 7.8,
+ 0
+ ],
+ [
+ 1787356800000,
+ 5.3,
+ 0
+ ],
+ [
+ 1787360400000,
+ 1.0,
+ 0
+ ],
+ [
+ 1787364000000,
+ 2.0,
+ 0
+ ],
+ [
+ 1787367600000,
+ 2.2,
+ 0
+ ],
+ [
+ 1787371200000,
+ 2.1,
+ 0
+ ],
+ [
+ 1787374800000,
+ 1.7999999999999998,
+ 0
+ ],
+ [
+ 1787378400000,
+ 0.8999999999999999,
+ 0
+ ],
+ [
+ 1787382000000,
+ 0.5,
+ 0
+ ],
+ [
+ 1787385600000,
+ 1.5,
+ 0
+ ],
+ [
+ 1787389200000,
+ 2.3,
+ 0
+ ],
+ [
+ 1787392800000,
+ 1.9,
+ 0
+ ],
+ [
+ 1787396400000,
+ 1.4,
+ 0
+ ],
+ [
+ 1787400000000,
+ 2.2,
+ 0
+ ],
+ [
+ 1787403600000,
+ 1.5,
+ 0
+ ],
+ [
+ 1787407200000,
+ 1.5,
+ 0
+ ],
+ [
+ 1787410800000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787414400000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1787418000000,
+ 10.6,
+ 0
+ ],
+ [
+ 1787421600000,
+ 8.7,
+ 0
+ ],
+ [
+ 1787425200000,
+ 5.8,
+ 0
+ ],
+ [
+ 1787428800000,
+ 7.9,
+ 0
+ ],
+ [
+ 1787432400000,
+ 8.4,
+ 0
+ ],
+ [
+ 1787436000000,
+ 4.0,
+ 0
+ ],
+ [
+ 1787439600000,
+ 6.4,
+ 0
+ ],
+ [
+ 1787443200000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787446800000,
+ 1.6,
+ 0
+ ],
+ [
+ 1787450400000,
+ 0.1,
+ 0
+ ],
+ [
+ 1787454000000,
+ 0.8999999999999999,
+ 0
+ ],
+ [
+ 1787457600000,
+ 1.7999999999999998,
+ 0
+ ],
+ [
+ 1787461200000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787464800000,
+ 3.5,
+ 0
+ ],
+ [
+ 1787468400000,
+ 2.8,
+ 0
+ ],
+ [
+ 1787472000000,
+ 3.8,
+ 0
+ ],
+ [
+ 1787475600000,
+ 3.7,
+ 0
+ ],
+ [
+ 1787479200000,
+ 4.8,
+ 0
+ ],
+ [
+ 1787482800000,
+ 6.0,
+ 0
+ ],
+ [
+ 1787486400000,
+ 4.4,
+ 0
+ ],
+ [
+ 1787490000000,
+ 4.3,
+ 0
+ ],
+ [
+ 1787493600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787497200000,
+ 5.3,
+ 0
+ ],
+ [
+ 1787500800000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1787504400000,
+ 6.8,
+ 0
+ ],
+ [
+ 1787508000000,
+ 6.199999999999999,
+ 0
+ ],
+ [
+ 1787511600000,
+ 5.9,
+ 0
+ ],
+ [
+ 1787515200000,
+ 4.8,
+ 0
+ ],
+ [
+ 1787518800000,
+ 5.4,
+ 0
+ ],
+ [
+ 1787522400000,
+ 6.1,
+ 0
+ ],
+ [
+ 1787526000000,
+ 6.4,
+ 0
+ ],
+ [
+ 1787529600000,
+ 6.6,
+ 0
+ ],
+ [
+ 1787533200000,
+ 4.8,
+ 0
+ ],
+ [
+ 1787536800000,
+ 3.5999999999999996,
+ 0
+ ],
+ [
+ 1787540400000,
+ 2.4,
+ 0
+ ],
+ [
+ 1787544000000,
+ 4.1,
+ 0
+ ],
+ [
+ 1787547600000,
+ 7.4,
+ 0
+ ],
+ [
+ 1787551200000,
+ 8.4,
+ 0
+ ],
+ [
+ 1787554800000,
+ 8.4,
+ 0
+ ],
+ [
+ 1787558400000,
+ 8.7,
+ 0
+ ],
+ [
+ 1787562000000,
+ 8.9,
+ 0
+ ],
+ [
+ 1787565600000,
+ 8.6,
+ 0
+ ],
+ [
+ 1787569200000,
+ 7.0,
+ 0
+ ],
+ [
+ 1787572800000,
+ 4.6,
+ 0
+ ],
+ [
+ 1787576400000,
+ 4.0,
+ 0
+ ],
+ [
+ 1787580000000,
+ 7.699999999999999,
+ 0
+ ],
+ [
+ 1787583600000,
+ 9.0,
+ 0
+ ],
+ [
+ 1787587200000,
+ 8.9,
+ 0
+ ],
+ [
+ 1787590800000,
+ 10.399999999999999,
+ 0
+ ],
+ [
+ 1787594400000,
+ 10.899999999999999,
+ 0
+ ],
+ [
+ 1787598000000,
+ 12.899999999999999,
+ 0
+ ],
+ [
+ 1787601600000,
+ 13.7,
+ 0
+ ],
+ [
+ 1787605200000,
+ 12.899999999999999,
+ 0
+ ],
+ [
+ 1787608800000,
+ 13.1,
+ 0
+ ],
+ [
+ 1787612400000,
+ 12.6,
+ 0
+ ],
+ [
+ 1787616000000,
+ 11.6,
+ 0
+ ],
+ [
+ 1787619600000,
+ 9.9,
+ 0
+ ],
+ [
+ 1787623200000,
+ 8.1,
+ 0
+ ],
+ [
+ 1787626800000,
+ 9.0,
+ 0
+ ],
+ [
+ 1787630400000,
+ 8.5,
+ 0
+ ],
+ [
+ 1787634000000,
+ 11.399999999999999,
+ 0
+ ],
+ [
+ 1787637600000,
+ 10.899999999999999,
+ 0
+ ],
+ [
+ 1787641200000,
+ 7.199999999999999,
+ 0
+ ],
+ [
+ 1787644800000,
+ 7.5,
+ 0
+ ],
+ [
+ 1787648400000,
+ 8.1,
+ 0
+ ],
+ [
+ 1787652000000,
+ 6.9,
+ 0
+ ],
+ [
+ 1787655600000,
+ 6.6,
+ 0
+ ],
+ [
+ 1787659200000,
+ 6.5,
+ 0
+ ],
+ [
+ 1787662800000,
+ 6.9,
+ 0
+ ],
+ [
+ 1787666400000,
+ 5.3,
+ 0
+ ],
+ [
+ 1787670000000,
+ 6.3,
+ 0
+ ],
+ [
+ 1787673600000,
+ 7.4,
+ 0
+ ],
+ [
+ 1787677200000,
+ 10.0,
+ 0
+ ],
+ [
+ 1787680800000,
+ 7.8,
+ 0
+ ],
+ [
+ 1787684400000,
+ 6.9,
+ 0
+ ],
+ [
+ 1787688000000,
+ 8.2,
+ 0
+ ],
+ [
+ 1787691600000,
+ 7.8,
+ 0
+ ],
+ [
+ 1787695200000,
+ 6.8,
+ 0
+ ],
+ [
+ 1787698800000,
+ 6.8,
+ 0
+ ],
+ [
+ 1787702400000,
+ 7.1,
+ 0
+ ],
+ [
+ 1787706000000,
+ 6.3,
+ 0
+ ],
+ [
+ 1787709600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787713200000,
+ 2.2,
+ 0
+ ],
+ [
+ 1787716800000,
+ 0.8,
+ 0
+ ],
+ [
+ 1787720400000,
+ 1.5,
+ 0
+ ],
+ [
+ 1787724000000,
+ 1.2999999999999998,
+ 0
+ ],
+ [
+ 1787727600000,
+ 1.7,
+ 0
+ ],
+ [
+ 1787731200000,
+ 3.0999999999999996,
+ 0
+ ],
+ [
+ 1787734800000,
+ 5.4,
+ 0
+ ],
+ [
+ 1787738400000,
+ 3.5999999999999996,
+ 0
+ ],
+ [
+ 1787742000000,
+ 0.8,
+ 0
+ ],
+ [
+ 1787745600000,
+ 2.2,
+ 0
+ ],
+ [
+ 1787749200000,
+ 2.3,
+ 0
+ ],
+ [
+ 1787752800000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787756400000,
+ 5.1,
+ 0
+ ],
+ [
+ 1787760000000,
+ 5.9,
+ 0
+ ],
+ [
+ 1787763600000,
+ 6.699999999999999,
+ 0
+ ],
+ [
+ 1787767200000,
+ 8.4,
+ 0
+ ],
+ [
+ 1787770800000,
+ 12.399999999999999,
+ 0
+ ],
+ [
+ 1787774400000,
+ 11.0,
+ 0
+ ],
+ [
+ 1787778000000,
+ 11.3,
+ 0
+ ],
+ [
+ 1787781600000,
+ 9.7,
+ 0
+ ],
+ [
+ 1787785200000,
+ 4.0,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Speed-Wind.Inst.1Hour.0.Decodes-Raw.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Speed-Wind.Inst.1Hour.0.Decodes-Raw.json
index 1030ae8a7..60684f0eb 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Speed-Wind.Inst.1Hour.0.Decodes-Raw.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Speed-Wind.Inst.1Hour.0.Decodes-Raw.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T00:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T15:00:00+00:00",
+ "end": "2026-08-26T23:00:00+00:00",
"interval": "PT1H",
"interval-offset": 0,
"name": "EUFA.Speed-Wind.Inst.1Hour.0.Decodes-Raw",
"office-id": "SWT",
- "page": "MTc4NTExMDQwMDAwMHx8MTg0fHwzMDAwMDA=",
+ "page": "MTc4MTQ4MTYwMDAwMHx8MzM3fHwzMDAwMDA=",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 1528,
+ "total": 2088,
"units": "mph",
"value-columns": [
{
@@ -7668,6 +7668,2806 @@
1785769200000,
5.5,
0
+ ],
+ [
+ 1785772800000,
+ 4.7,
+ 0
+ ],
+ [
+ 1785776400000,
+ 4.9,
+ 0
+ ],
+ [
+ 1785780000000,
+ 5.7,
+ 0
+ ],
+ [
+ 1785783600000,
+ 7.5,
+ 0
+ ],
+ [
+ 1785787200000,
+ 8.6,
+ 0
+ ],
+ [
+ 1785790800000,
+ 8.8,
+ 0
+ ],
+ [
+ 1785794400000,
+ 8.4,
+ 0
+ ],
+ [
+ 1785798000000,
+ 7.8,
+ 0
+ ],
+ [
+ 1785801600000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1785805200000,
+ 5.6,
+ 0
+ ],
+ [
+ 1785808800000,
+ 3.9,
+ 0
+ ],
+ [
+ 1785812400000,
+ 2.1,
+ 0
+ ],
+ [
+ 1785816000000,
+ 1.9,
+ 0
+ ],
+ [
+ 1785819600000,
+ 2.9,
+ 0
+ ],
+ [
+ 1785823200000,
+ 1.9,
+ 0
+ ],
+ [
+ 1785826800000,
+ 2.8,
+ 0
+ ],
+ [
+ 1785830400000,
+ 3.5,
+ 0
+ ],
+ [
+ 1785834000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1785837600000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1785841200000,
+ 4.3,
+ 0
+ ],
+ [
+ 1785844800000,
+ 4.7,
+ 0
+ ],
+ [
+ 1785848400000,
+ 5.5,
+ 0
+ ],
+ [
+ 1785852000000,
+ 6.700000000000001,
+ 0
+ ],
+ [
+ 1785855600000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1785859200000,
+ 7.900000000000001,
+ 0
+ ],
+ [
+ 1785862800000,
+ 7.3,
+ 0
+ ],
+ [
+ 1785866400000,
+ 6.700000000000001,
+ 0
+ ],
+ [
+ 1785870000000,
+ 4.8,
+ 0
+ ],
+ [
+ 1785873600000,
+ 8.7,
+ 0
+ ],
+ [
+ 1785877200000,
+ 8.1,
+ 0
+ ],
+ [
+ 1785880800000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1785884400000,
+ 6.700000000000001,
+ 0
+ ],
+ [
+ 1785888000000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1785891600000,
+ 5.3,
+ 0
+ ],
+ [
+ 1785895200000,
+ 4.4,
+ 0
+ ],
+ [
+ 1785898800000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1785902400000,
+ 2.7000000000000006,
+ 0
+ ],
+ [
+ 1785906000000,
+ 4.4,
+ 0
+ ],
+ [
+ 1785909600000,
+ 4.5,
+ 0
+ ],
+ [
+ 1785913200000,
+ 4.1,
+ 0
+ ],
+ [
+ 1785916800000,
+ 4.9,
+ 0
+ ],
+ [
+ 1785920400000,
+ 6.3,
+ 0
+ ],
+ [
+ 1785924000000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1785927600000,
+ 4.8,
+ 0
+ ],
+ [
+ 1785931200000,
+ 4.6,
+ 0
+ ],
+ [
+ 1785934800000,
+ 4.1,
+ 0
+ ],
+ [
+ 1785938400000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1785942000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1785945600000,
+ 4.8,
+ 0
+ ],
+ [
+ 1785949200000,
+ 6.1,
+ 0
+ ],
+ [
+ 1785952800000,
+ 6.200000000000001,
+ 0
+ ],
+ [
+ 1785956400000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1785960000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1785963600000,
+ 4.8,
+ 0
+ ],
+ [
+ 1785967200000,
+ 7.1,
+ 0
+ ],
+ [
+ 1785970800000,
+ 6.5,
+ 0
+ ],
+ [
+ 1785974400000,
+ 4.8,
+ 0
+ ],
+ [
+ 1785978000000,
+ 3.6000000000000005,
+ 0
+ ],
+ [
+ 1785981600000,
+ 2.2,
+ 0
+ ],
+ [
+ 1785985200000,
+ 3.1000000000000005,
+ 0
+ ],
+ [
+ 1785988800000,
+ 3.9,
+ 0
+ ],
+ [
+ 1785992400000,
+ 1.7,
+ 0
+ ],
+ [
+ 1785996000000,
+ 3.0,
+ 0
+ ],
+ [
+ 1785999600000,
+ 5.7,
+ 0
+ ],
+ [
+ 1786003200000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786006800000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786010400000,
+ 5.2,
+ 0
+ ],
+ [
+ 1786014000000,
+ 4.5,
+ 0
+ ],
+ [
+ 1786017600000,
+ 4.1,
+ 0
+ ],
+ [
+ 1786021200000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1786024800000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1786028400000,
+ 5.7,
+ 0
+ ],
+ [
+ 1786032000000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1786035600000,
+ 7.400000000000001,
+ 0
+ ],
+ [
+ 1786039200000,
+ 8.5,
+ 0
+ ],
+ [
+ 1786042800000,
+ 9.2,
+ 0
+ ],
+ [
+ 1786046400000,
+ 5.6,
+ 0
+ ],
+ [
+ 1786050000000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1786053600000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786057200000,
+ 5.2,
+ 0
+ ],
+ [
+ 1786060800000,
+ 3.7000000000000006,
+ 0
+ ],
+ [
+ 1786064400000,
+ 3.1000000000000005,
+ 0
+ ],
+ [
+ 1786068000000,
+ 2.1,
+ 0
+ ],
+ [
+ 1786071600000,
+ 1.9,
+ 0
+ ],
+ [
+ 1786075200000,
+ 2.5,
+ 0
+ ],
+ [
+ 1786078800000,
+ 3.2000000000000006,
+ 0
+ ],
+ [
+ 1786082400000,
+ 2.4,
+ 0
+ ],
+ [
+ 1786086000000,
+ 3.3,
+ 0
+ ],
+ [
+ 1786089600000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786093200000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1786096800000,
+ 6.0,
+ 0
+ ],
+ [
+ 1786100400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786104000000,
+ 6.5,
+ 0
+ ],
+ [
+ 1786107600000,
+ 5.6,
+ 0
+ ],
+ [
+ 1786111200000,
+ 4.0,
+ 0
+ ],
+ [
+ 1786114800000,
+ 2.0,
+ 0
+ ],
+ [
+ 1786118400000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1786122000000,
+ 7.0,
+ 0
+ ],
+ [
+ 1786125600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786129200000,
+ 6.5,
+ 0
+ ],
+ [
+ 1786132800000,
+ 7.8,
+ 0
+ ],
+ [
+ 1786136400000,
+ 9.3,
+ 0
+ ],
+ [
+ 1786140000000,
+ 17.4,
+ 0
+ ],
+ [
+ 1786143600000,
+ 6.8,
+ 0
+ ],
+ [
+ 1786147200000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786150800000,
+ 2.9,
+ 0
+ ],
+ [
+ 1786154400000,
+ 3.5,
+ 0
+ ],
+ [
+ 1786158000000,
+ 2.7000000000000006,
+ 0
+ ],
+ [
+ 1786161600000,
+ 5.7,
+ 0
+ ],
+ [
+ 1786165200000,
+ 4.9,
+ 0
+ ],
+ [
+ 1786168800000,
+ 3.4,
+ 0
+ ],
+ [
+ 1786172400000,
+ 3.7000000000000006,
+ 0
+ ],
+ [
+ 1786176000000,
+ 2.9,
+ 0
+ ],
+ [
+ 1786179600000,
+ 2.4,
+ 0
+ ],
+ [
+ 1786183200000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786186800000,
+ 5.1,
+ 0
+ ],
+ [
+ 1786190400000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786194000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786197600000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786201200000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786204800000,
+ 4.4,
+ 0
+ ],
+ [
+ 1786208400000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786212000000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786215600000,
+ 6.400000000000001,
+ 0
+ ],
+ [
+ 1786219200000,
+ 6.700000000000001,
+ 0
+ ],
+ [
+ 1786222800000,
+ 6.1,
+ 0
+ ],
+ [
+ 1786226400000,
+ 4.5,
+ 0
+ ],
+ [
+ 1786230000000,
+ 8.9,
+ 0
+ ],
+ [
+ 1786233600000,
+ 9.4,
+ 0
+ ],
+ [
+ 1786237200000,
+ 8.2,
+ 0
+ ],
+ [
+ 1786240800000,
+ 6.8,
+ 0
+ ],
+ [
+ 1786244400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786248000000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1786251600000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786255200000,
+ 2.8,
+ 0
+ ],
+ [
+ 1786258800000,
+ 2.0,
+ 0
+ ],
+ [
+ 1786262400000,
+ 2.8,
+ 0
+ ],
+ [
+ 1786266000000,
+ 1.8000000000000003,
+ 0
+ ],
+ [
+ 1786269600000,
+ 2.1,
+ 0
+ ],
+ [
+ 1786273200000,
+ 3.1000000000000005,
+ 0
+ ],
+ [
+ 1786276800000,
+ 2.9,
+ 0
+ ],
+ [
+ 1786280400000,
+ 3.7000000000000006,
+ 0
+ ],
+ [
+ 1786284000000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786287600000,
+ 5.1,
+ 0
+ ],
+ [
+ 1786291200000,
+ 5.7,
+ 0
+ ],
+ [
+ 1786294800000,
+ 4.9,
+ 0
+ ],
+ [
+ 1786298400000,
+ 6.1,
+ 0
+ ],
+ [
+ 1786302000000,
+ 6.700000000000001,
+ 0
+ ],
+ [
+ 1786305600000,
+ 4.7,
+ 0
+ ],
+ [
+ 1786309200000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786312800000,
+ 7.6,
+ 0
+ ],
+ [
+ 1786316400000,
+ 8.8,
+ 0
+ ],
+ [
+ 1786320000000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786323600000,
+ 7.700000000000001,
+ 0
+ ],
+ [
+ 1786327200000,
+ 7.400000000000001,
+ 0
+ ],
+ [
+ 1786330800000,
+ 6.8,
+ 0
+ ],
+ [
+ 1786334400000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1786338000000,
+ 5.7,
+ 0
+ ],
+ [
+ 1786341600000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786345200000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786348800000,
+ 5.6,
+ 0
+ ],
+ [
+ 1786352400000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1786356000000,
+ 4.4,
+ 0
+ ],
+ [
+ 1786359600000,
+ 4.4,
+ 0
+ ],
+ [
+ 1786363200000,
+ 3.6000000000000005,
+ 0
+ ],
+ [
+ 1786366800000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786370400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786374000000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786377600000,
+ 6.5,
+ 0
+ ],
+ [
+ 1786381200000,
+ 6.1,
+ 0
+ ],
+ [
+ 1786384800000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786388400000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786392000000,
+ 3.9,
+ 0
+ ],
+ [
+ 1786395600000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786399200000,
+ 7.6,
+ 0
+ ],
+ [
+ 1786402800000,
+ 8.0,
+ 0
+ ],
+ [
+ 1786406400000,
+ 8.3,
+ 0
+ ],
+ [
+ 1786410000000,
+ 9.1,
+ 0
+ ],
+ [
+ 1786413600000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786417200000,
+ 5.7,
+ 0
+ ],
+ [
+ 1786420800000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786424400000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786428000000,
+ 4.0,
+ 0
+ ],
+ [
+ 1786431600000,
+ 4.4,
+ 0
+ ],
+ [
+ 1786435200000,
+ 4.8,
+ 0
+ ],
+ [
+ 1786438800000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786442400000,
+ 5.1,
+ 0
+ ],
+ [
+ 1786446000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786449600000,
+ 4.3,
+ 0
+ ],
+ [
+ 1786453200000,
+ 4.3,
+ 0
+ ],
+ [
+ 1786456800000,
+ 4.5,
+ 0
+ ],
+ [
+ 1786460400000,
+ 4.7,
+ 0
+ ],
+ [
+ 1786464000000,
+ 5.7,
+ 0
+ ],
+ [
+ 1786467600000,
+ 7.6,
+ 0
+ ],
+ [
+ 1786471200000,
+ 9.1,
+ 0
+ ],
+ [
+ 1786474800000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786478400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786482000000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786485600000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786489200000,
+ 6.400000000000001,
+ 0
+ ],
+ [
+ 1786492800000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1786496400000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786500000000,
+ 4.0,
+ 0
+ ],
+ [
+ 1786503600000,
+ 4.8,
+ 0
+ ],
+ [
+ 1786507200000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786510800000,
+ 5.1,
+ 0
+ ],
+ [
+ 1786514400000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786518000000,
+ 5.6,
+ 0
+ ],
+ [
+ 1786521600000,
+ 4.7,
+ 0
+ ],
+ [
+ 1786525200000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786528800000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786532400000,
+ 3.9,
+ 0
+ ],
+ [
+ 1786536000000,
+ 3.5,
+ 0
+ ],
+ [
+ 1786539600000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786543200000,
+ 6.8,
+ 0
+ ],
+ [
+ 1786546800000,
+ 7.900000000000001,
+ 0
+ ],
+ [
+ 1786550400000,
+ 9.1,
+ 0
+ ],
+ [
+ 1786554000000,
+ 8.0,
+ 0
+ ],
+ [
+ 1786557600000,
+ 8.6,
+ 0
+ ],
+ [
+ 1786561200000,
+ 8.3,
+ 0
+ ],
+ [
+ 1786564800000,
+ 7.0,
+ 0
+ ],
+ [
+ 1786568400000,
+ 7.3,
+ 0
+ ],
+ [
+ 1786572000000,
+ 8.3,
+ 0
+ ],
+ [
+ 1786575600000,
+ 7.3,
+ 0
+ ],
+ [
+ 1786579200000,
+ 7.400000000000001,
+ 0
+ ],
+ [
+ 1786582800000,
+ 6.0,
+ 0
+ ],
+ [
+ 1786586400000,
+ 4.3,
+ 0
+ ],
+ [
+ 1786590000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786593600000,
+ 5.1,
+ 0
+ ],
+ [
+ 1786597200000,
+ 6.200000000000001,
+ 0
+ ],
+ [
+ 1786600800000,
+ 6.1,
+ 0
+ ],
+ [
+ 1786604400000,
+ 6.6,
+ 0
+ ],
+ [
+ 1786608000000,
+ 6.700000000000001,
+ 0
+ ],
+ [
+ 1786611600000,
+ 6.3,
+ 0
+ ],
+ [
+ 1786615200000,
+ 6.400000000000001,
+ 0
+ ],
+ [
+ 1786618800000,
+ 4.5,
+ 0
+ ],
+ [
+ 1786622400000,
+ 4.1,
+ 0
+ ],
+ [
+ 1786626000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786629600000,
+ 8.0,
+ 0
+ ],
+ [
+ 1786633200000,
+ 10.6,
+ 0
+ ],
+ [
+ 1786636800000,
+ 10.9,
+ 0
+ ],
+ [
+ 1786640400000,
+ 11.0,
+ 0
+ ],
+ [
+ 1786644000000,
+ 10.1,
+ 0
+ ],
+ [
+ 1786647600000,
+ 9.9,
+ 0
+ ],
+ [
+ 1786651200000,
+ 9.9,
+ 0
+ ],
+ [
+ 1786654800000,
+ 10.5,
+ 0
+ ],
+ [
+ 1786658400000,
+ 9.2,
+ 0
+ ],
+ [
+ 1786662000000,
+ 10.4,
+ 0
+ ],
+ [
+ 1786665600000,
+ 10.1,
+ 0
+ ],
+ [
+ 1786669200000,
+ 9.0,
+ 0
+ ],
+ [
+ 1786672800000,
+ 8.2,
+ 0
+ ],
+ [
+ 1786676400000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1786680000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1786683600000,
+ 6.1,
+ 0
+ ],
+ [
+ 1786687200000,
+ 6.400000000000001,
+ 0
+ ],
+ [
+ 1786690800000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786694400000,
+ 5.5,
+ 0
+ ],
+ [
+ 1786698000000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1786701600000,
+ 6.6,
+ 0
+ ],
+ [
+ 1786705200000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1786708800000,
+ 7.1,
+ 0
+ ],
+ [
+ 1786712400000,
+ 7.400000000000001,
+ 0
+ ],
+ [
+ 1786716000000,
+ 9.2,
+ 0
+ ],
+ [
+ 1786719600000,
+ 9.0,
+ 0
+ ],
+ [
+ 1786723200000,
+ 9.6,
+ 0
+ ],
+ [
+ 1786726800000,
+ 7.400000000000001,
+ 0
+ ],
+ [
+ 1786730400000,
+ 8.9,
+ 0
+ ],
+ [
+ 1786734000000,
+ 8.2,
+ 0
+ ],
+ [
+ 1786737600000,
+ 8.3,
+ 0
+ ],
+ [
+ 1786741200000,
+ 8.0,
+ 0
+ ],
+ [
+ 1786744800000,
+ 9.4,
+ 0
+ ],
+ [
+ 1786748400000,
+ 9.4,
+ 0
+ ],
+ [
+ 1786752000000,
+ 10.2,
+ 0
+ ],
+ [
+ 1786755600000,
+ 8.1,
+ 0
+ ],
+ [
+ 1786759200000,
+ 6.5,
+ 0
+ ],
+ [
+ 1786762800000,
+ 4.9,
+ 0
+ ],
+ [
+ 1786766400000,
+ 3.3,
+ 0
+ ],
+ [
+ 1786770000000,
+ 3.6000000000000005,
+ 0
+ ],
+ [
+ 1786773600000,
+ 3.7000000000000006,
+ 0
+ ],
+ [
+ 1786777200000,
+ 4.6,
+ 0
+ ],
+ [
+ 1786780800000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786784400000,
+ 2.2,
+ 0
+ ],
+ [
+ 1786788000000,
+ 2.5,
+ 0
+ ],
+ [
+ 1786791600000,
+ 3.0,
+ 0
+ ],
+ [
+ 1786795200000,
+ 3.4,
+ 0
+ ],
+ [
+ 1786798800000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786802400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786806000000,
+ 8.7,
+ 0
+ ],
+ [
+ 1786809600000,
+ 7.8,
+ 0
+ ],
+ [
+ 1786813200000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1786816800000,
+ 6.200000000000001,
+ 0
+ ],
+ [
+ 1786820400000,
+ 7.0,
+ 0
+ ],
+ [
+ 1786824000000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1786827600000,
+ 7.3,
+ 0
+ ],
+ [
+ 1786831200000,
+ 8.1,
+ 0
+ ],
+ [
+ 1786834800000,
+ 6.8,
+ 0
+ ],
+ [
+ 1786838400000,
+ 7.8,
+ 0
+ ],
+ [
+ 1786842000000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1786845600000,
+ 4.3,
+ 0
+ ],
+ [
+ 1786849200000,
+ 4.7,
+ 0
+ ],
+ [
+ 1786852800000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786856400000,
+ 4.2,
+ 0
+ ],
+ [
+ 1786860000000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786863600000,
+ 4.3,
+ 0
+ ],
+ [
+ 1786867200000,
+ 3.5,
+ 0
+ ],
+ [
+ 1786870800000,
+ 3.2000000000000006,
+ 0
+ ],
+ [
+ 1786874400000,
+ 3.3,
+ 0
+ ],
+ [
+ 1786878000000,
+ 3.4,
+ 0
+ ],
+ [
+ 1786881600000,
+ 3.9,
+ 0
+ ],
+ [
+ 1786885200000,
+ 5.3,
+ 0
+ ],
+ [
+ 1786888800000,
+ 8.3,
+ 0
+ ],
+ [
+ 1786892400000,
+ 8.8,
+ 0
+ ],
+ [
+ 1786896000000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786899600000,
+ 6.200000000000001,
+ 0
+ ],
+ [
+ 1786903200000,
+ 8.8,
+ 0
+ ],
+ [
+ 1786906800000,
+ 9.8,
+ 0
+ ],
+ [
+ 1786910400000,
+ 9.7,
+ 0
+ ],
+ [
+ 1786914000000,
+ 11.5,
+ 0
+ ],
+ [
+ 1786917600000,
+ 10.4,
+ 0
+ ],
+ [
+ 1786921200000,
+ 9.7,
+ 0
+ ],
+ [
+ 1786924800000,
+ 6.5,
+ 0
+ ],
+ [
+ 1786928400000,
+ 4.0,
+ 0
+ ],
+ [
+ 1786932000000,
+ 3.3,
+ 0
+ ],
+ [
+ 1786935600000,
+ 3.0,
+ 0
+ ],
+ [
+ 1786939200000,
+ 2.0,
+ 0
+ ],
+ [
+ 1786942800000,
+ 4.7,
+ 0
+ ],
+ [
+ 1786946400000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1786950000000,
+ 2.5,
+ 0
+ ],
+ [
+ 1786953600000,
+ 2.5,
+ 0
+ ],
+ [
+ 1786957200000,
+ 1.1,
+ 0
+ ],
+ [
+ 1786960800000,
+ 2.3,
+ 0
+ ],
+ [
+ 1786964400000,
+ 0.3,
+ 0
+ ],
+ [
+ 1786968000000,
+ 0.6,
+ 0
+ ],
+ [
+ 1786971600000,
+ 0.6,
+ 0
+ ],
+ [
+ 1786975200000,
+ 0.6,
+ 0
+ ],
+ [
+ 1786978800000,
+ 14.400000000000002,
+ 0
+ ],
+ [
+ 1786982400000,
+ 10.9,
+ 0
+ ],
+ [
+ 1786986000000,
+ 3.8,
+ 0
+ ],
+ [
+ 1786989600000,
+ 5.8,
+ 0
+ ],
+ [
+ 1786993200000,
+ 7.0,
+ 0
+ ],
+ [
+ 1786996800000,
+ 4.1,
+ 0
+ ],
+ [
+ 1787000400000,
+ 3.7000000000000006,
+ 0
+ ],
+ [
+ 1787004000000,
+ 6.6,
+ 0
+ ],
+ [
+ 1787007600000,
+ 9.9,
+ 0
+ ],
+ [
+ 1787011200000,
+ 8.7,
+ 0
+ ],
+ [
+ 1787014800000,
+ 7.3,
+ 0
+ ],
+ [
+ 1787018400000,
+ 3.6000000000000005,
+ 0
+ ],
+ [
+ 1787022000000,
+ 1.4,
+ 0
+ ],
+ [
+ 1787025600000,
+ 2.0,
+ 0
+ ],
+ [
+ 1787029200000,
+ 1.3,
+ 0
+ ],
+ [
+ 1787032800000,
+ 0.4000000000000001,
+ 0
+ ],
+ [
+ 1787036400000,
+ 2.3,
+ 0
+ ],
+ [
+ 1787040000000,
+ 0.6,
+ 0
+ ],
+ [
+ 1787043600000,
+ 0.8000000000000002,
+ 0
+ ],
+ [
+ 1787047200000,
+ 1.0,
+ 0
+ ],
+ [
+ 1787050800000,
+ 2.0,
+ 0
+ ],
+ [
+ 1787054400000,
+ 3.6000000000000005,
+ 0
+ ],
+ [
+ 1787058000000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1787061600000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1787065200000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1787068800000,
+ 3.3,
+ 0
+ ],
+ [
+ 1787072400000,
+ 3.5,
+ 0
+ ],
+ [
+ 1787076000000,
+ 6.1,
+ 0
+ ],
+ [
+ 1787079600000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1787083200000,
+ 6.1,
+ 0
+ ],
+ [
+ 1787086800000,
+ 7.0,
+ 0
+ ],
+ [
+ 1787090400000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1787094000000,
+ 8.0,
+ 0
+ ],
+ [
+ 1787097600000,
+ 5.7,
+ 0
+ ],
+ [
+ 1787101200000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787104800000,
+ 2.3,
+ 0
+ ],
+ [
+ 1787108400000,
+ 4.2,
+ 0
+ ],
+ [
+ 1787112000000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1787115600000,
+ 6.0,
+ 0
+ ],
+ [
+ 1787119200000,
+ 6.700000000000001,
+ 0
+ ],
+ [
+ 1787122800000,
+ 5.2,
+ 0
+ ],
+ [
+ 1787126400000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787130000000,
+ 4.6,
+ 0
+ ],
+ [
+ 1787133600000,
+ 4.2,
+ 0
+ ],
+ [
+ 1787137200000,
+ 3.9,
+ 0
+ ],
+ [
+ 1787140800000,
+ 4.5,
+ 0
+ ],
+ [
+ 1787144400000,
+ 4.6,
+ 0
+ ],
+ [
+ 1787148000000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1787151600000,
+ 9.4,
+ 0
+ ],
+ [
+ 1787155200000,
+ 10.300000000000002,
+ 0
+ ],
+ [
+ 1787158800000,
+ 8.9,
+ 0
+ ],
+ [
+ 1787162400000,
+ 10.2,
+ 0
+ ],
+ [
+ 1787166000000,
+ 7.900000000000001,
+ 0
+ ],
+ [
+ 1787169600000,
+ 9.0,
+ 0
+ ],
+ [
+ 1787173200000,
+ 9.6,
+ 0
+ ],
+ [
+ 1787176800000,
+ 6.3,
+ 0
+ ],
+ [
+ 1787180400000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1787184000000,
+ 3.3,
+ 0
+ ],
+ [
+ 1787187600000,
+ 4.1,
+ 0
+ ],
+ [
+ 1787191200000,
+ 2.8,
+ 0
+ ],
+ [
+ 1787194800000,
+ 4.1,
+ 0
+ ],
+ [
+ 1787198400000,
+ 8.5,
+ 0
+ ],
+ [
+ 1787202000000,
+ 3.7000000000000006,
+ 0
+ ],
+ [
+ 1787205600000,
+ 3.6000000000000005,
+ 0
+ ],
+ [
+ 1787209200000,
+ 2.3,
+ 0
+ ],
+ [
+ 1787212800000,
+ 2.2,
+ 0
+ ],
+ [
+ 1787216400000,
+ 0.9000000000000001,
+ 0
+ ],
+ [
+ 1787220000000,
+ 3.2000000000000006,
+ 0
+ ],
+ [
+ 1787223600000,
+ 3.8,
+ 0
+ ],
+ [
+ 1787227200000,
+ 2.8,
+ 0
+ ],
+ [
+ 1787230800000,
+ 3.1000000000000005,
+ 0
+ ],
+ [
+ 1787234400000,
+ 2.7000000000000006,
+ 0
+ ],
+ [
+ 1787238000000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787241600000,
+ 4.8,
+ 0
+ ],
+ [
+ 1787245200000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1787248800000,
+ 5.2,
+ 0
+ ],
+ [
+ 1787252400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1787256000000,
+ 6.700000000000001,
+ 0
+ ],
+ [
+ 1787259600000,
+ 7.5,
+ 0
+ ],
+ [
+ 1787263200000,
+ 7.6,
+ 0
+ ],
+ [
+ 1787266800000,
+ 7.8,
+ 0
+ ],
+ [
+ 1787270400000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1787274000000,
+ 2.0,
+ 0
+ ],
+ [
+ 1787277600000,
+ 1.0,
+ 0
+ ],
+ [
+ 1787281200000,
+ 2.5,
+ 0
+ ],
+ [
+ 1787284800000,
+ 3.1000000000000005,
+ 0
+ ],
+ [
+ 1787288400000,
+ 1.4,
+ 0
+ ],
+ [
+ 1787292000000,
+ 2.7000000000000006,
+ 0
+ ],
+ [
+ 1787295600000,
+ 1.8000000000000003,
+ 0
+ ],
+ [
+ 1787299200000,
+ 4.2,
+ 0
+ ],
+ [
+ 1787302800000,
+ 6.0,
+ 0
+ ],
+ [
+ 1787306400000,
+ 6.1,
+ 0
+ ],
+ [
+ 1787310000000,
+ 3.3,
+ 0
+ ],
+ [
+ 1787313600000,
+ 9.7,
+ 0
+ ],
+ [
+ 1787317200000,
+ 12.5,
+ 0
+ ],
+ [
+ 1787320800000,
+ 13.400000000000002,
+ 0
+ ],
+ [
+ 1787324400000,
+ 9.8,
+ 0
+ ],
+ [
+ 1787328000000,
+ 6.700000000000001,
+ 0
+ ],
+ [
+ 1787331600000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1787335200000,
+ 5.7,
+ 0
+ ],
+ [
+ 1787338800000,
+ 6.6,
+ 0
+ ],
+ [
+ 1787342400000,
+ 5.8,
+ 0
+ ],
+ [
+ 1787346000000,
+ 4.4,
+ 0
+ ],
+ [
+ 1787349600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787353200000,
+ 7.8,
+ 0
+ ],
+ [
+ 1787356800000,
+ 5.3,
+ 0
+ ],
+ [
+ 1787360400000,
+ 1.0,
+ 0
+ ],
+ [
+ 1787364000000,
+ 2.0,
+ 0
+ ],
+ [
+ 1787367600000,
+ 2.2,
+ 0
+ ],
+ [
+ 1787371200000,
+ 2.1,
+ 0
+ ],
+ [
+ 1787374800000,
+ 1.8000000000000003,
+ 0
+ ],
+ [
+ 1787378400000,
+ 0.9000000000000001,
+ 0
+ ],
+ [
+ 1787382000000,
+ 0.5,
+ 0
+ ],
+ [
+ 1787385600000,
+ 1.5,
+ 0
+ ],
+ [
+ 1787389200000,
+ 2.3,
+ 0
+ ],
+ [
+ 1787392800000,
+ 1.9,
+ 0
+ ],
+ [
+ 1787396400000,
+ 1.4,
+ 0
+ ],
+ [
+ 1787400000000,
+ 2.2,
+ 0
+ ],
+ [
+ 1787403600000,
+ 1.5,
+ 0
+ ],
+ [
+ 1787407200000,
+ 1.5,
+ 0
+ ],
+ [
+ 1787410800000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787414400000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1787418000000,
+ 10.6,
+ 0
+ ],
+ [
+ 1787421600000,
+ 8.7,
+ 0
+ ],
+ [
+ 1787425200000,
+ 5.8,
+ 0
+ ],
+ [
+ 1787428800000,
+ 7.900000000000001,
+ 0
+ ],
+ [
+ 1787432400000,
+ 8.4,
+ 0
+ ],
+ [
+ 1787436000000,
+ 4.0,
+ 0
+ ],
+ [
+ 1787439600000,
+ 6.400000000000001,
+ 0
+ ],
+ [
+ 1787443200000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787446800000,
+ 1.6000000000000003,
+ 0
+ ],
+ [
+ 1787450400000,
+ 0.10000000000000002,
+ 0
+ ],
+ [
+ 1787454000000,
+ 0.9000000000000001,
+ 0
+ ],
+ [
+ 1787457600000,
+ 1.8000000000000003,
+ 0
+ ],
+ [
+ 1787461200000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787464800000,
+ 3.5,
+ 0
+ ],
+ [
+ 1787468400000,
+ 2.8,
+ 0
+ ],
+ [
+ 1787472000000,
+ 3.8,
+ 0
+ ],
+ [
+ 1787475600000,
+ 3.7000000000000006,
+ 0
+ ],
+ [
+ 1787479200000,
+ 4.8,
+ 0
+ ],
+ [
+ 1787482800000,
+ 6.0,
+ 0
+ ],
+ [
+ 1787486400000,
+ 4.4,
+ 0
+ ],
+ [
+ 1787490000000,
+ 4.3,
+ 0
+ ],
+ [
+ 1787493600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787497200000,
+ 5.3,
+ 0
+ ],
+ [
+ 1787500800000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1787504400000,
+ 6.8,
+ 0
+ ],
+ [
+ 1787508000000,
+ 6.200000000000001,
+ 0
+ ],
+ [
+ 1787511600000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1787515200000,
+ 4.8,
+ 0
+ ],
+ [
+ 1787518800000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1787522400000,
+ 6.1,
+ 0
+ ],
+ [
+ 1787526000000,
+ 6.400000000000001,
+ 0
+ ],
+ [
+ 1787529600000,
+ 6.6,
+ 0
+ ],
+ [
+ 1787533200000,
+ 4.8,
+ 0
+ ],
+ [
+ 1787536800000,
+ 3.6000000000000005,
+ 0
+ ],
+ [
+ 1787540400000,
+ 2.4,
+ 0
+ ],
+ [
+ 1787544000000,
+ 4.1,
+ 0
+ ],
+ [
+ 1787547600000,
+ 7.400000000000001,
+ 0
+ ],
+ [
+ 1787551200000,
+ 8.4,
+ 0
+ ],
+ [
+ 1787554800000,
+ 8.4,
+ 0
+ ],
+ [
+ 1787558400000,
+ 8.7,
+ 0
+ ],
+ [
+ 1787562000000,
+ 8.9,
+ 0
+ ],
+ [
+ 1787565600000,
+ 8.6,
+ 0
+ ],
+ [
+ 1787569200000,
+ 7.0,
+ 0
+ ],
+ [
+ 1787572800000,
+ 4.6,
+ 0
+ ],
+ [
+ 1787576400000,
+ 4.0,
+ 0
+ ],
+ [
+ 1787580000000,
+ 7.700000000000001,
+ 0
+ ],
+ [
+ 1787583600000,
+ 9.0,
+ 0
+ ],
+ [
+ 1787587200000,
+ 8.9,
+ 0
+ ],
+ [
+ 1787590800000,
+ 10.4,
+ 0
+ ],
+ [
+ 1787594400000,
+ 10.9,
+ 0
+ ],
+ [
+ 1787598000000,
+ 12.900000000000002,
+ 0
+ ],
+ [
+ 1787601600000,
+ 13.7,
+ 0
+ ],
+ [
+ 1787605200000,
+ 12.900000000000002,
+ 0
+ ],
+ [
+ 1787608800000,
+ 13.1,
+ 0
+ ],
+ [
+ 1787612400000,
+ 12.6,
+ 0
+ ],
+ [
+ 1787616000000,
+ 11.6,
+ 0
+ ],
+ [
+ 1787619600000,
+ 9.9,
+ 0
+ ],
+ [
+ 1787623200000,
+ 8.1,
+ 0
+ ],
+ [
+ 1787626800000,
+ 9.0,
+ 0
+ ],
+ [
+ 1787630400000,
+ 8.5,
+ 0
+ ],
+ [
+ 1787634000000,
+ 11.4,
+ 0
+ ],
+ [
+ 1787637600000,
+ 10.9,
+ 0
+ ],
+ [
+ 1787641200000,
+ 7.200000000000001,
+ 0
+ ],
+ [
+ 1787644800000,
+ 7.5,
+ 0
+ ],
+ [
+ 1787648400000,
+ 8.1,
+ 0
+ ],
+ [
+ 1787652000000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1787655600000,
+ 6.6,
+ 0
+ ],
+ [
+ 1787659200000,
+ 6.5,
+ 0
+ ],
+ [
+ 1787662800000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1787666400000,
+ 5.3,
+ 0
+ ],
+ [
+ 1787670000000,
+ 6.3,
+ 0
+ ],
+ [
+ 1787673600000,
+ 7.400000000000001,
+ 0
+ ],
+ [
+ 1787677200000,
+ 10.0,
+ 0
+ ],
+ [
+ 1787680800000,
+ 7.8,
+ 0
+ ],
+ [
+ 1787684400000,
+ 6.900000000000001,
+ 0
+ ],
+ [
+ 1787688000000,
+ 8.2,
+ 0
+ ],
+ [
+ 1787691600000,
+ 7.8,
+ 0
+ ],
+ [
+ 1787695200000,
+ 6.8,
+ 0
+ ],
+ [
+ 1787698800000,
+ 6.8,
+ 0
+ ],
+ [
+ 1787702400000,
+ 7.1,
+ 0
+ ],
+ [
+ 1787706000000,
+ 6.3,
+ 0
+ ],
+ [
+ 1787709600000,
+ 5.0,
+ 0
+ ],
+ [
+ 1787713200000,
+ 2.2,
+ 0
+ ],
+ [
+ 1787716800000,
+ 0.8000000000000002,
+ 0
+ ],
+ [
+ 1787720400000,
+ 1.5,
+ 0
+ ],
+ [
+ 1787724000000,
+ 1.3,
+ 0
+ ],
+ [
+ 1787727600000,
+ 1.7,
+ 0
+ ],
+ [
+ 1787731200000,
+ 3.1000000000000005,
+ 0
+ ],
+ [
+ 1787734800000,
+ 5.400000000000001,
+ 0
+ ],
+ [
+ 1787738400000,
+ 3.6000000000000005,
+ 0
+ ],
+ [
+ 1787742000000,
+ 0.8000000000000002,
+ 0
+ ],
+ [
+ 1787745600000,
+ 2.2,
+ 0
+ ],
+ [
+ 1787749200000,
+ 2.3,
+ 0
+ ],
+ [
+ 1787752800000,
+ 3.0,
+ 0
+ ],
+ [
+ 1787756400000,
+ 5.1,
+ 0
+ ],
+ [
+ 1787760000000,
+ 5.900000000000001,
+ 0
+ ],
+ [
+ 1787763600000,
+ 6.700000000000001,
+ 0
+ ],
+ [
+ 1787767200000,
+ 8.4,
+ 0
+ ],
+ [
+ 1787770800000,
+ 12.400000000000002,
+ 0
+ ],
+ [
+ 1787774400000,
+ 11.0,
+ 0
+ ],
+ [
+ 1787778000000,
+ 11.300000000000002,
+ 0
+ ],
+ [
+ 1787781600000,
+ 9.7,
+ 0
+ ],
+ [
+ 1787785200000,
+ 4.0,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Stor.Inst.1Hour.0.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Stor.Inst.1Hour.0.Ccp-Rev.json
index de92a4497..bd5668357 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Stor.Inst.1Hour.0.Ccp-Rev.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Stor.Inst.1Hour.0.Ccp-Rev.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T00:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T15:00:00+00:00",
+ "end": "2026-08-26T23:00:00+00:00",
"interval": "PT1H",
"interval-offset": 0,
"name": "EUFA.Stor.Inst.1Hour.0.Ccp-Rev",
"office-id": "SWT",
- "page": "MTc4MTQ4MTYwMDAwMHx8MzM3fHwzMDAwMDA=",
+ "page": "MTc4NjMyMDAwMDAwMHx8MzM3fHwzMDAwMDA=",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 1528,
+ "total": 2088,
"units": "ac-ft",
"value-columns": [
{
@@ -7668,6 +7668,2806 @@
1785769200000,
2179132.9536665957,
0
+ ],
+ [
+ 1785772800000,
+ 2178208.0136947525,
+ 0
+ ],
+ [
+ 1785776400000,
+ 2179132.9536665957,
+ 0
+ ],
+ [
+ 1785780000000,
+ 2179132.9536665957,
+ 0
+ ],
+ [
+ 1785783600000,
+ 2180057.89363844,
+ 0
+ ],
+ [
+ 1785787200000,
+ 2179132.9536665957,
+ 0
+ ],
+ [
+ 1785790800000,
+ 2176358.133751065,
+ 0
+ ],
+ [
+ 1785794400000,
+ 2174508.2538073775,
+ 0
+ ],
+ [
+ 1785798000000,
+ 2173583.313835534,
+ 0
+ ],
+ [
+ 1785801600000,
+ 2170808.493919992,
+ 0
+ ],
+ [
+ 1785805200000,
+ 2170808.493919992,
+ 0
+ ],
+ [
+ 1785808800000,
+ 2174508.2538073775,
+ 0
+ ],
+ [
+ 1785812400000,
+ 2173583.313835534,
+ 0
+ ],
+ [
+ 1785816000000,
+ 2173583.313835534,
+ 0
+ ],
+ [
+ 1785819600000,
+ 2173583.313835534,
+ 0
+ ],
+ [
+ 1785823200000,
+ 2173583.313835534,
+ 0
+ ],
+ [
+ 1785826800000,
+ 2171733.4338918356,
+ 0
+ ],
+ [
+ 1785830400000,
+ 2171733.4338918356,
+ 0
+ ],
+ [
+ 1785834000000,
+ 2171733.4338918356,
+ 0
+ ],
+ [
+ 1785837600000,
+ 2172658.37386369,
+ 0
+ ],
+ [
+ 1785841200000,
+ 2172658.37386369,
+ 0
+ ],
+ [
+ 1785844800000,
+ 2172658.37386369,
+ 0
+ ],
+ [
+ 1785848400000,
+ 2172658.37386369,
+ 0
+ ],
+ [
+ 1785852000000,
+ 2171733.4338918356,
+ 0
+ ],
+ [
+ 1785855600000,
+ 2170808.493919992,
+ 0
+ ],
+ [
+ 1785859200000,
+ 2170808.493919992,
+ 0
+ ],
+ [
+ 1785862800000,
+ 2170808.493919992,
+ 0
+ ],
+ [
+ 1785866400000,
+ 2171733.4338918356,
+ 0
+ ],
+ [
+ 1785870000000,
+ 2172658.37386369,
+ 0
+ ],
+ [
+ 1785873600000,
+ 2170808.493919992,
+ 0
+ ],
+ [
+ 1785877200000,
+ 2170808.493919992,
+ 0
+ ],
+ [
+ 1785880800000,
+ 2169883.5539481584,
+ 0
+ ],
+ [
+ 1785884400000,
+ 2167108.734032617,
+ 0
+ ],
+ [
+ 1785888000000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785891600000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785895200000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785898800000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785902400000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785906000000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785909600000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785913200000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785916800000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785920400000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785924000000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785927600000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785931200000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785934800000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785938400000,
+ 2164333.9141170857,
+ 0
+ ],
+ [
+ 1785942000000,
+ 2164333.9141170857,
+ 0
+ ],
+ [
+ 1785945600000,
+ 2164333.9141170857,
+ 0
+ ],
+ [
+ 1785949200000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785952800000,
+ 2166183.794060773,
+ 0
+ ],
+ [
+ 1785956400000,
+ 2166183.794060773,
+ 0
+ ],
+ [
+ 1785960000000,
+ 2165258.8540889295,
+ 0
+ ],
+ [
+ 1785963600000,
+ 2163408.974145232,
+ 0
+ ],
+ [
+ 1785967200000,
+ 2162484.034173398,
+ 0
+ ],
+ [
+ 1785970800000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1785974400000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1785978000000,
+ 2161559.0942015545,
+ 0
+ ],
+ [
+ 1785981600000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1785985200000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1785988800000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1785992400000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1785996000000,
+ 2157859.334314169,
+ 0
+ ],
+ [
+ 1785999600000,
+ 2157859.334314169,
+ 0
+ ],
+ [
+ 1786003200000,
+ 2158784.2742860233,
+ 0
+ ],
+ [
+ 1786006800000,
+ 2158784.2742860233,
+ 0
+ ],
+ [
+ 1786010400000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1786014000000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1786017600000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1786021200000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1786024800000,
+ 2158784.2742860233,
+ 0
+ ],
+ [
+ 1786028400000,
+ 2158784.2742860233,
+ 0
+ ],
+ [
+ 1786032000000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1786035600000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1786039200000,
+ 2159709.2142578564,
+ 0
+ ],
+ [
+ 1786042800000,
+ 2158784.2742860233,
+ 0
+ ],
+ [
+ 1786046400000,
+ 2156934.3943423256,
+ 0
+ ],
+ [
+ 1786050000000,
+ 2156009.4543704814,
+ 0
+ ],
+ [
+ 1786053600000,
+ 2155084.5143986377,
+ 0
+ ],
+ [
+ 1786057200000,
+ 2154159.574426794,
+ 0
+ ],
+ [
+ 1786060800000,
+ 2153234.6344549507,
+ 0
+ ],
+ [
+ 1786064400000,
+ 2154159.574426794,
+ 0
+ ],
+ [
+ 1786068000000,
+ 2154159.574426794,
+ 0
+ ],
+ [
+ 1786071600000,
+ 2154159.574426794,
+ 0
+ ],
+ [
+ 1786075200000,
+ 2154159.574426794,
+ 0
+ ],
+ [
+ 1786078800000,
+ 2154159.574426794,
+ 0
+ ],
+ [
+ 1786082400000,
+ 2151384.754511263,
+ 0
+ ],
+ [
+ 1786086000000,
+ 2151384.754511263,
+ 0
+ ],
+ [
+ 1786089600000,
+ 2151384.754511263,
+ 0
+ ],
+ [
+ 1786093200000,
+ 2151384.754511263,
+ 0
+ ],
+ [
+ 1786096800000,
+ 2151384.754511263,
+ 0
+ ],
+ [
+ 1786100400000,
+ 2152309.6944831065,
+ 0
+ ],
+ [
+ 1786104000000,
+ 2151384.754511263,
+ 0
+ ],
+ [
+ 1786107600000,
+ 2150459.8145394195,
+ 0
+ ],
+ [
+ 1786111200000,
+ 2151384.754511263,
+ 0
+ ],
+ [
+ 1786114800000,
+ 2151384.754511263,
+ 0
+ ],
+ [
+ 1786118400000,
+ 2151384.754511263,
+ 0
+ ],
+ [
+ 1786122000000,
+ 2152309.6944831065,
+ 0
+ ],
+ [
+ 1786125600000,
+ 2152309.6944831065,
+ 0
+ ],
+ [
+ 1786129200000,
+ 2151384.754511263,
+ 0
+ ],
+ [
+ 1786132800000,
+ 2149534.8745675753,
+ 0
+ ],
+ [
+ 1786136400000,
+ 2149534.8745675753,
+ 0
+ ],
+ [
+ 1786140000000,
+ 2153234.6344549507,
+ 0
+ ],
+ [
+ 1786143600000,
+ 2149534.8745675753,
+ 0
+ ],
+ [
+ 1786147200000,
+ 2145835.1146801896,
+ 0
+ ],
+ [
+ 1786150800000,
+ 2148609.9345957213,
+ 0
+ ],
+ [
+ 1786154400000,
+ 2149534.8745675753,
+ 0
+ ],
+ [
+ 1786158000000,
+ 2144910.1747083464,
+ 0
+ ],
+ [
+ 1786161600000,
+ 2143060.294764659,
+ 0
+ ],
+ [
+ 1786165200000,
+ 2143985.2347365026,
+ 0
+ ],
+ [
+ 1786168800000,
+ 2143985.2347365026,
+ 0
+ ],
+ [
+ 1786172400000,
+ 2143060.294764659,
+ 0
+ ],
+ [
+ 1786176000000,
+ 2144910.1747083464,
+ 0
+ ],
+ [
+ 1786179600000,
+ 2144910.1747083464,
+ 0
+ ],
+ [
+ 1786183200000,
+ 2143060.294764659,
+ 0
+ ],
+ [
+ 1786186800000,
+ 2143060.294764659,
+ 0
+ ],
+ [
+ 1786190400000,
+ 2143060.294764659,
+ 0
+ ],
+ [
+ 1786194000000,
+ 2143060.294764659,
+ 0
+ ],
+ [
+ 1786197600000,
+ 2143060.294764659,
+ 0
+ ],
+ [
+ 1786201200000,
+ 2143060.294764659,
+ 0
+ ],
+ [
+ 1786204800000,
+ 2144910.1747083464,
+ 0
+ ],
+ [
+ 1786208400000,
+ 2145835.1146801896,
+ 0
+ ],
+ [
+ 1786212000000,
+ 2145835.1146801896,
+ 0
+ ],
+ [
+ 1786215600000,
+ 2144910.1747083464,
+ 0
+ ],
+ [
+ 1786219200000,
+ 2143985.2347365026,
+ 0
+ ],
+ [
+ 1786222800000,
+ 2142135.354792815,
+ 0
+ ],
+ [
+ 1786226400000,
+ 2140285.474849117,
+ 0
+ ],
+ [
+ 1786230000000,
+ 2139360.5348772835,
+ 0
+ ],
+ [
+ 1786233600000,
+ 2138435.59490544,
+ 0
+ ],
+ [
+ 1786237200000,
+ 2141210.4148209714,
+ 0
+ ],
+ [
+ 1786240800000,
+ 2141210.4148209714,
+ 0
+ ],
+ [
+ 1786244400000,
+ 2141210.4148209714,
+ 0
+ ],
+ [
+ 1786248000000,
+ 2141210.4148209714,
+ 0
+ ],
+ [
+ 1786251600000,
+ 2141210.4148209714,
+ 0
+ ],
+ [
+ 1786255200000,
+ 2139360.5348772835,
+ 0
+ ],
+ [
+ 1786258800000,
+ 2139360.5348772835,
+ 0
+ ],
+ [
+ 1786262400000,
+ 2139360.5348772835,
+ 0
+ ],
+ [
+ 1786266000000,
+ 2139360.5348772835,
+ 0
+ ],
+ [
+ 1786269600000,
+ 2139360.5348772835,
+ 0
+ ],
+ [
+ 1786273200000,
+ 2139360.5348772835,
+ 0
+ ],
+ [
+ 1786276800000,
+ 2139360.5348772835,
+ 0
+ ],
+ [
+ 1786280400000,
+ 2139360.5348772835,
+ 0
+ ],
+ [
+ 1786284000000,
+ 2140285.474849117,
+ 0
+ ],
+ [
+ 1786287600000,
+ 2140285.474849117,
+ 0
+ ],
+ [
+ 1786291200000,
+ 2140285.474849117,
+ 0
+ ],
+ [
+ 1786294800000,
+ 2140285.474849117,
+ 0
+ ],
+ [
+ 1786298400000,
+ 2140285.474849117,
+ 0
+ ],
+ [
+ 1786302000000,
+ 2139360.5348772835,
+ 0
+ ],
+ [
+ 1786305600000,
+ 2138435.59490544,
+ 0
+ ],
+ [
+ 1786309200000,
+ 2136585.714961742,
+ 0
+ ],
+ [
+ 1786312800000,
+ 2134735.8350180546,
+ 0
+ ],
+ [
+ 1786316400000,
+ 2134735.8350180546,
+ 0
+ ],
+ [
+ 1786320000000,
+ 2134735.8350180546,
+ 0
+ ],
+ [
+ 1786323600000,
+ 2132885.9550743676,
+ 0
+ ],
+ [
+ 1786327200000,
+ 2135660.774989909,
+ 0
+ ],
+ [
+ 1786330800000,
+ 2134735.8350180546,
+ 0
+ ],
+ [
+ 1786334400000,
+ 2133810.8950462113,
+ 0
+ ],
+ [
+ 1786338000000,
+ 2132885.9550743676,
+ 0
+ ],
+ [
+ 1786341600000,
+ 2132885.9550743676,
+ 0
+ ],
+ [
+ 1786345200000,
+ 2131961.0151025234,
+ 0
+ ],
+ [
+ 1786348800000,
+ 2131961.0151025234,
+ 0
+ ],
+ [
+ 1786352400000,
+ 2132885.9550743676,
+ 0
+ ],
+ [
+ 1786356000000,
+ 2132885.9550743676,
+ 0
+ ],
+ [
+ 1786359600000,
+ 2132885.9550743676,
+ 0
+ ],
+ [
+ 1786363200000,
+ 2133810.8950462113,
+ 0
+ ],
+ [
+ 1786366800000,
+ 2134735.8350180546,
+ 0
+ ],
+ [
+ 1786370400000,
+ 2133810.8950462113,
+ 0
+ ],
+ [
+ 1786374000000,
+ 2134735.8350180546,
+ 0
+ ],
+ [
+ 1786377600000,
+ 2134735.8350180546,
+ 0
+ ],
+ [
+ 1786381200000,
+ 2134735.8350180546,
+ 0
+ ],
+ [
+ 1786384800000,
+ 2132885.9550743676,
+ 0
+ ],
+ [
+ 1786388400000,
+ 2131961.0151025234,
+ 0
+ ],
+ [
+ 1786392000000,
+ 2129186.195186992,
+ 0
+ ],
+ [
+ 1786395600000,
+ 2128261.255215149,
+ 0
+ ],
+ [
+ 1786399200000,
+ 2127336.315243305,
+ 0
+ ],
+ [
+ 1786402800000,
+ 2126411.375271461,
+ 0
+ ],
+ [
+ 1786406400000,
+ 2125486.4352996065,
+ 0
+ ],
+ [
+ 1786410000000,
+ 2126411.375271461,
+ 0
+ ],
+ [
+ 1786413600000,
+ 2126411.375271461,
+ 0
+ ],
+ [
+ 1786417200000,
+ 2126411.375271461,
+ 0
+ ],
+ [
+ 1786420800000,
+ 2124561.4953277735,
+ 0
+ ],
+ [
+ 1786424400000,
+ 2123636.55535593,
+ 0
+ ],
+ [
+ 1786428000000,
+ 2123636.55535593,
+ 0
+ ],
+ [
+ 1786431600000,
+ 2123636.55535593,
+ 0
+ ],
+ [
+ 1786435200000,
+ 2122711.6153840753,
+ 0
+ ],
+ [
+ 1786438800000,
+ 2122711.6153840753,
+ 0
+ ],
+ [
+ 1786442400000,
+ 2123636.55535593,
+ 0
+ ],
+ [
+ 1786446000000,
+ 2123636.55535593,
+ 0
+ ],
+ [
+ 1786449600000,
+ 2123636.55535593,
+ 0
+ ],
+ [
+ 1786453200000,
+ 2123636.55535593,
+ 0
+ ],
+ [
+ 1786456800000,
+ 2124561.4953277735,
+ 0
+ ],
+ [
+ 1786460400000,
+ 2124561.4953277735,
+ 0
+ ],
+ [
+ 1786464000000,
+ 2124561.4953277735,
+ 0
+ ],
+ [
+ 1786467600000,
+ 2124561.4953277735,
+ 0
+ ],
+ [
+ 1786471200000,
+ 2124561.4953277735,
+ 0
+ ],
+ [
+ 1786474800000,
+ 2123636.55535593,
+ 0
+ ],
+ [
+ 1786478400000,
+ 2122711.6153840753,
+ 0
+ ],
+ [
+ 1786482000000,
+ 2120861.7354403883,
+ 0
+ ],
+ [
+ 1786485600000,
+ 2120861.7354403883,
+ 0
+ ],
+ [
+ 1786489200000,
+ 2119011.8554967004,
+ 0
+ ],
+ [
+ 1786492800000,
+ 2118086.9155248567,
+ 0
+ ],
+ [
+ 1786496400000,
+ 2118086.9155248567,
+ 0
+ ],
+ [
+ 1786500000000,
+ 2118086.9155248567,
+ 0
+ ],
+ [
+ 1786503600000,
+ 2118086.9155248567,
+ 0
+ ],
+ [
+ 1786507200000,
+ 2117161.9755530027,
+ 0
+ ],
+ [
+ 1786510800000,
+ 2116237.035581169,
+ 0
+ ],
+ [
+ 1786514400000,
+ 2115312.095609326,
+ 0
+ ],
+ [
+ 1786518000000,
+ 2115312.095609326,
+ 0
+ ],
+ [
+ 1786521600000,
+ 2115312.095609326,
+ 0
+ ],
+ [
+ 1786525200000,
+ 2115312.095609326,
+ 0
+ ],
+ [
+ 1786528800000,
+ 2115312.095609326,
+ 0
+ ],
+ [
+ 1786532400000,
+ 2116237.035581169,
+ 0
+ ],
+ [
+ 1786536000000,
+ 2116237.035581169,
+ 0
+ ],
+ [
+ 1786539600000,
+ 2116237.035581169,
+ 0
+ ],
+ [
+ 1786543200000,
+ 2117161.9755530027,
+ 0
+ ],
+ [
+ 1786546800000,
+ 2119011.8554967004,
+ 0
+ ],
+ [
+ 1786550400000,
+ 2119936.7954685446,
+ 0
+ ],
+ [
+ 1786554000000,
+ 2119011.8554967004,
+ 0
+ ],
+ [
+ 1786557600000,
+ 2117161.9755530027,
+ 0
+ ],
+ [
+ 1786561200000,
+ 2116237.035581169,
+ 0
+ ],
+ [
+ 1786564800000,
+ 2114387.1556374715,
+ 0
+ ],
+ [
+ 1786568400000,
+ 2112537.2756937942,
+ 0
+ ],
+ [
+ 1786572000000,
+ 2111612.33572194,
+ 0
+ ],
+ [
+ 1786575600000,
+ 2110687.3957500965,
+ 0
+ ],
+ [
+ 1786579200000,
+ 2109762.455778253,
+ 0
+ ],
+ [
+ 1786582800000,
+ 2108837.515806409,
+ 0
+ ],
+ [
+ 1786586400000,
+ 2107912.5758345653,
+ 0
+ ],
+ [
+ 1786590000000,
+ 2106987.635862722,
+ 0
+ ],
+ [
+ 1786593600000,
+ 2106987.635862722,
+ 0
+ ],
+ [
+ 1786597200000,
+ 2105137.755919034,
+ 0
+ ],
+ [
+ 1786600800000,
+ 2104212.8159471904,
+ 0
+ ],
+ [
+ 1786604400000,
+ 2104212.8159471904,
+ 0
+ ],
+ [
+ 1786608000000,
+ 2104212.8159471904,
+ 0
+ ],
+ [
+ 1786611600000,
+ 2104212.8159471904,
+ 0
+ ],
+ [
+ 1786615200000,
+ 2104212.8159471904,
+ 0
+ ],
+ [
+ 1786618800000,
+ 2104212.8159471904,
+ 0
+ ],
+ [
+ 1786622400000,
+ 2104212.8159471904,
+ 0
+ ],
+ [
+ 1786626000000,
+ 2105137.755919034,
+ 0
+ ],
+ [
+ 1786629600000,
+ 2106062.6958908774,
+ 0
+ ],
+ [
+ 1786633200000,
+ 2106987.635862722,
+ 0
+ ],
+ [
+ 1786636800000,
+ 2106987.635862722,
+ 0
+ ],
+ [
+ 1786640400000,
+ 2107912.5758345653,
+ 0
+ ],
+ [
+ 1786644000000,
+ 2106987.635862722,
+ 0
+ ],
+ [
+ 1786647600000,
+ 2106987.635862722,
+ 0
+ ],
+ [
+ 1786651200000,
+ 2106062.6958908774,
+ 0
+ ],
+ [
+ 1786654800000,
+ 2103287.8759753467,
+ 0
+ ],
+ [
+ 1786658400000,
+ 2101466.54603079,
+ 0
+ ],
+ [
+ 1786662000000,
+ 2100570.1560580772,
+ 0
+ ],
+ [
+ 1786665600000,
+ 2099673.766085354,
+ 0
+ ],
+ [
+ 1786669200000,
+ 2098777.3761126413,
+ 0
+ ],
+ [
+ 1786672800000,
+ 2097880.9861399285,
+ 0
+ ],
+ [
+ 1786676400000,
+ 2096984.5961672158,
+ 0
+ ],
+ [
+ 1786680000000,
+ 2096984.5961672158,
+ 0
+ ],
+ [
+ 1786683600000,
+ 2096088.206194503,
+ 0
+ ],
+ [
+ 1786687200000,
+ 2095191.8162217902,
+ 0
+ ],
+ [
+ 1786690800000,
+ 2095191.8162217902,
+ 0
+ ],
+ [
+ 1786694400000,
+ 2094295.4262490668,
+ 0
+ ],
+ [
+ 1786698000000,
+ 2094295.4262490668,
+ 0
+ ],
+ [
+ 1786701600000,
+ 2094295.4262490668,
+ 0
+ ],
+ [
+ 1786705200000,
+ 2095191.8162217902,
+ 0
+ ],
+ [
+ 1786708800000,
+ 2096088.206194503,
+ 0
+ ],
+ [
+ 1786712400000,
+ 2096088.206194503,
+ 0
+ ],
+ [
+ 1786716000000,
+ 2096984.5961672158,
+ 0
+ ],
+ [
+ 1786719600000,
+ 2097880.9861399285,
+ 0
+ ],
+ [
+ 1786723200000,
+ 2097880.9861399285,
+ 0
+ ],
+ [
+ 1786726800000,
+ 2097880.9861399285,
+ 0
+ ],
+ [
+ 1786730400000,
+ 2097880.9861399285,
+ 0
+ ],
+ [
+ 1786734000000,
+ 2096984.5961672158,
+ 0
+ ],
+ [
+ 1786737600000,
+ 2095191.8162217902,
+ 0
+ ],
+ [
+ 1786741200000,
+ 2093399.0362763645,
+ 0
+ ],
+ [
+ 1786744800000,
+ 2092502.6463036519,
+ 0
+ ],
+ [
+ 1786748400000,
+ 2090709.8663582157,
+ 0
+ ],
+ [
+ 1786752000000,
+ 2089813.476385513,
+ 0
+ ],
+ [
+ 1786755600000,
+ 2089813.476385513,
+ 0
+ ],
+ [
+ 1786759200000,
+ 2088020.696440077,
+ 0
+ ],
+ [
+ 1786762800000,
+ 2088020.696440077,
+ 0
+ ],
+ [
+ 1786766400000,
+ 2088020.696440077,
+ 0
+ ],
+ [
+ 1786770000000,
+ 2087124.3064673645,
+ 0
+ ],
+ [
+ 1786773600000,
+ 2086227.9164946517,
+ 0
+ ],
+ [
+ 1786777200000,
+ 2085331.5265219389,
+ 0
+ ],
+ [
+ 1786780800000,
+ 2085331.5265219389,
+ 0
+ ],
+ [
+ 1786784400000,
+ 2085331.5265219389,
+ 0
+ ],
+ [
+ 1786788000000,
+ 2085331.5265219389,
+ 0
+ ],
+ [
+ 1786791600000,
+ 2085331.5265219389,
+ 0
+ ],
+ [
+ 1786795200000,
+ 2085331.5265219389,
+ 0
+ ],
+ [
+ 1786798800000,
+ 2084435.1365492262,
+ 0
+ ],
+ [
+ 1786802400000,
+ 2084435.1365492262,
+ 0
+ ],
+ [
+ 1786806000000,
+ 2085331.5265219389,
+ 0
+ ],
+ [
+ 1786809600000,
+ 2086227.9164946517,
+ 0
+ ],
+ [
+ 1786813200000,
+ 2086227.9164946517,
+ 0
+ ],
+ [
+ 1786816800000,
+ 2086227.9164946517,
+ 0
+ ],
+ [
+ 1786820400000,
+ 2086227.9164946517,
+ 0
+ ],
+ [
+ 1786824000000,
+ 2085331.5265219389,
+ 0
+ ],
+ [
+ 1786827600000,
+ 2083538.746576513,
+ 0
+ ],
+ [
+ 1786831200000,
+ 2082642.3566038,
+ 0
+ ],
+ [
+ 1786834800000,
+ 2081745.9666310875,
+ 0
+ ],
+ [
+ 1786838400000,
+ 2079953.1866856513,
+ 0
+ ],
+ [
+ 1786842000000,
+ 2079953.1866856513,
+ 0
+ ],
+ [
+ 1786845600000,
+ 2079953.1866856513,
+ 0
+ ],
+ [
+ 1786849200000,
+ 2079056.796712949,
+ 0
+ ],
+ [
+ 1786852800000,
+ 2079056.796712949,
+ 0
+ ],
+ [
+ 1786856400000,
+ 2078160.4067402363,
+ 0
+ ],
+ [
+ 1786860000000,
+ 2077264.016767513,
+ 0
+ ],
+ [
+ 1786863600000,
+ 2077264.016767513,
+ 0
+ ],
+ [
+ 1786867200000,
+ 2077264.016767513,
+ 0
+ ],
+ [
+ 1786870800000,
+ 2077264.016767513,
+ 0
+ ],
+ [
+ 1786874400000,
+ 2077264.016767513,
+ 0
+ ],
+ [
+ 1786878000000,
+ 2077264.016767513,
+ 0
+ ],
+ [
+ 1786881600000,
+ 2078160.4067402363,
+ 0
+ ],
+ [
+ 1786885200000,
+ 2078160.4067402363,
+ 0
+ ],
+ [
+ 1786888800000,
+ 2078160.4067402363,
+ 0
+ ],
+ [
+ 1786892400000,
+ 2079056.796712949,
+ 0
+ ],
+ [
+ 1786896000000,
+ 2079056.796712949,
+ 0
+ ],
+ [
+ 1786899600000,
+ 2079056.796712949,
+ 0
+ ],
+ [
+ 1786903200000,
+ 2079056.796712949,
+ 0
+ ],
+ [
+ 1786906800000,
+ 2079056.796712949,
+ 0
+ ],
+ [
+ 1786910400000,
+ 2077264.016767513,
+ 0
+ ],
+ [
+ 1786914000000,
+ 2076367.6267948002,
+ 0
+ ],
+ [
+ 1786917600000,
+ 2074574.8468493747,
+ 0
+ ],
+ [
+ 1786921200000,
+ 2074574.8468493747,
+ 0
+ ],
+ [
+ 1786924800000,
+ 2072782.066903949,
+ 0
+ ],
+ [
+ 1786928400000,
+ 2072782.066903949,
+ 0
+ ],
+ [
+ 1786932000000,
+ 2071885.6769312257,
+ 0
+ ],
+ [
+ 1786935600000,
+ 2071885.6769312257,
+ 0
+ ],
+ [
+ 1786939200000,
+ 2070989.2869585233,
+ 0
+ ],
+ [
+ 1786942800000,
+ 2070092.8969858107,
+ 0
+ ],
+ [
+ 1786946400000,
+ 2070092.8969858107,
+ 0
+ ],
+ [
+ 1786950000000,
+ 2070092.8969858107,
+ 0
+ ],
+ [
+ 1786953600000,
+ 2069196.5070130874,
+ 0
+ ],
+ [
+ 1786957200000,
+ 2068300.1170403745,
+ 0
+ ],
+ [
+ 1786960800000,
+ 2068300.1170403745,
+ 0
+ ],
+ [
+ 1786964400000,
+ 2068300.1170403745,
+ 0
+ ],
+ [
+ 1786968000000,
+ 2068300.1170403745,
+ 0
+ ],
+ [
+ 1786971600000,
+ 2068300.1170403745,
+ 0
+ ],
+ [
+ 1786975200000,
+ 2068300.1170403745,
+ 0
+ ],
+ [
+ 1786978800000,
+ 2070989.2869585233,
+ 0
+ ],
+ [
+ 1786982400000,
+ 2069196.5070130874,
+ 0
+ ],
+ [
+ 1786986000000,
+ 2066507.337094949,
+ 0
+ ],
+ [
+ 1786989600000,
+ 2065610.9471222358,
+ 0
+ ],
+ [
+ 1786993200000,
+ 2064714.5571495234,
+ 0
+ ],
+ [
+ 1786996800000,
+ 2063818.1671768106,
+ 0
+ ],
+ [
+ 1787000400000,
+ 2062921.7772040977,
+ 0
+ ],
+ [
+ 1787004000000,
+ 2062921.7772040977,
+ 0
+ ],
+ [
+ 1787007600000,
+ 2062921.7772040977,
+ 0
+ ],
+ [
+ 1787011200000,
+ 2062025.3872313846,
+ 0
+ ],
+ [
+ 1787014800000,
+ 2061128.9972586718,
+ 0
+ ],
+ [
+ 1787018400000,
+ 2059336.2173132463,
+ 0
+ ],
+ [
+ 1787022000000,
+ 2058439.8273405335,
+ 0
+ ],
+ [
+ 1787025600000,
+ 2058439.8273405335,
+ 0
+ ],
+ [
+ 1787029200000,
+ 2058439.8273405335,
+ 0
+ ],
+ [
+ 1787032800000,
+ 2058439.8273405335,
+ 0
+ ],
+ [
+ 1787036400000,
+ 2059336.2173132463,
+ 0
+ ],
+ [
+ 1787040000000,
+ 2058439.8273405335,
+ 0
+ ],
+ [
+ 1787043600000,
+ 2058439.8273405335,
+ 0
+ ],
+ [
+ 1787047200000,
+ 2058439.8273405335,
+ 0
+ ],
+ [
+ 1787050800000,
+ 2057543.4373678102,
+ 0
+ ],
+ [
+ 1787054400000,
+ 2057543.4373678102,
+ 0
+ ],
+ [
+ 1787058000000,
+ 2057543.4373678102,
+ 0
+ ],
+ [
+ 1787061600000,
+ 2056647.0473951078,
+ 0
+ ],
+ [
+ 1787065200000,
+ 2057543.4373678102,
+ 0
+ ],
+ [
+ 1787068800000,
+ 2057543.4373678102,
+ 0
+ ],
+ [
+ 1787072400000,
+ 2057543.4373678102,
+ 0
+ ],
+ [
+ 1787076000000,
+ 2057543.4373678102,
+ 0
+ ],
+ [
+ 1787079600000,
+ 2057543.4373678102,
+ 0
+ ],
+ [
+ 1787083200000,
+ 2055750.6574223847,
+ 0
+ ],
+ [
+ 1787086800000,
+ 2055750.6574223847,
+ 0
+ ],
+ [
+ 1787090400000,
+ 2055750.6574223847,
+ 0
+ ],
+ [
+ 1787094000000,
+ 2054854.2674496719,
+ 0
+ ],
+ [
+ 1787097600000,
+ 2053061.4875042462,
+ 0
+ ],
+ [
+ 1787101200000,
+ 2053061.4875042462,
+ 0
+ ],
+ [
+ 1787104800000,
+ 2053061.4875042462,
+ 0
+ ],
+ [
+ 1787108400000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787112000000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787115600000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787119200000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787122800000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787126400000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787130000000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787133600000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787137200000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787140800000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787144400000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787148000000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787151600000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787155200000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787158800000,
+ 2052165.0975315333,
+ 0
+ ],
+ [
+ 1787162400000,
+ 2051268.7075588207,
+ 0
+ ],
+ [
+ 1787166000000,
+ 2050372.3175861079,
+ 0
+ ],
+ [
+ 1787169600000,
+ 2050372.3175861079,
+ 0
+ ],
+ [
+ 1787173200000,
+ 2048579.5376406822,
+ 0
+ ],
+ [
+ 1787176800000,
+ 2047683.1476679693,
+ 0
+ ],
+ [
+ 1787180400000,
+ 2047683.1476679693,
+ 0
+ ],
+ [
+ 1787184000000,
+ 2045890.3677225334,
+ 0
+ ],
+ [
+ 1787187600000,
+ 2044993.9777498306,
+ 0
+ ],
+ [
+ 1787191200000,
+ 2045890.3677225334,
+ 0
+ ],
+ [
+ 1787194800000,
+ 2045890.3677225334,
+ 0
+ ],
+ [
+ 1787198400000,
+ 2044993.9777498306,
+ 0
+ ],
+ [
+ 1787202000000,
+ 2044993.9777498306,
+ 0
+ ],
+ [
+ 1787205600000,
+ 2044993.9777498306,
+ 0
+ ],
+ [
+ 1787209200000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787212800000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787216400000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787220000000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787223600000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787227200000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787230800000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787234400000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787238000000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787241600000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787245200000,
+ 2044097.587777108,
+ 0
+ ],
+ [
+ 1787248800000,
+ 2043201.1978043946,
+ 0
+ ],
+ [
+ 1787252400000,
+ 2042304.8078316823,
+ 0
+ ],
+ [
+ 1787256000000,
+ 2042304.8078316823,
+ 0
+ ],
+ [
+ 1787259600000,
+ 2041408.4178589694,
+ 0
+ ],
+ [
+ 1787263200000,
+ 2040512.0278862566,
+ 0
+ ],
+ [
+ 1787266800000,
+ 2039615.6379135435,
+ 0
+ ],
+ [
+ 1787270400000,
+ 2039615.6379135435,
+ 0
+ ],
+ [
+ 1787274000000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787277600000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787281200000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787284800000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787288400000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787292000000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787295600000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787299200000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787302800000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787306400000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787310000000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787313600000,
+ 2039615.6379135435,
+ 0
+ ],
+ [
+ 1787317200000,
+ 2044097.587777108,
+ 0
+ ],
+ [
+ 1787320800000,
+ 2045890.3677225334,
+ 0
+ ],
+ [
+ 1787324400000,
+ 2044993.9777498306,
+ 0
+ ],
+ [
+ 1787328000000,
+ 2044993.9777498306,
+ 0
+ ],
+ [
+ 1787331600000,
+ 2044993.9777498306,
+ 0
+ ],
+ [
+ 1787335200000,
+ 2044993.9777498306,
+ 0
+ ],
+ [
+ 1787338800000,
+ 2046786.7576952463,
+ 0
+ ],
+ [
+ 1787342400000,
+ 2044993.9777498306,
+ 0
+ ],
+ [
+ 1787346000000,
+ 2042304.8078316823,
+ 0
+ ],
+ [
+ 1787349600000,
+ 2040512.0278862566,
+ 0
+ ],
+ [
+ 1787353200000,
+ 2039615.6379135435,
+ 0
+ ],
+ [
+ 1787356800000,
+ 2039615.6379135435,
+ 0
+ ],
+ [
+ 1787360400000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787364000000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787367600000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787371200000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787374800000,
+ 2039615.6379135435,
+ 0
+ ],
+ [
+ 1787378400000,
+ 2039018.0445984015,
+ 0
+ ],
+ [
+ 1787382000000,
+ 2038420.4512832598,
+ 0
+ ],
+ [
+ 1787385600000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787389200000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787392800000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787396400000,
+ 2036926.4679954052,
+ 0
+ ],
+ [
+ 1787400000000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787403600000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787407200000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787410800000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787414400000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787418000000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787421600000,
+ 2038719.2479408307,
+ 0
+ ],
+ [
+ 1787425200000,
+ 2037822.8579681178,
+ 0
+ ],
+ [
+ 1787428800000,
+ 2036926.4679954052,
+ 0
+ ],
+ [
+ 1787432400000,
+ 2036926.4679954052,
+ 0
+ ],
+ [
+ 1787436000000,
+ 2035133.688049969,
+ 0
+ ],
+ [
+ 1787439600000,
+ 2034237.2980772667,
+ 0
+ ],
+ [
+ 1787443200000,
+ 2032444.5181318307,
+ 0
+ ],
+ [
+ 1787446800000,
+ 2032444.5181318307,
+ 0
+ ],
+ [
+ 1787450400000,
+ 2033340.9081045436,
+ 0
+ ],
+ [
+ 1787454000000,
+ 2033340.9081045436,
+ 0
+ ],
+ [
+ 1787457600000,
+ 2033340.9081045436,
+ 0
+ ],
+ [
+ 1787461200000,
+ 2033340.9081045436,
+ 0
+ ],
+ [
+ 1787464800000,
+ 2032444.5181318307,
+ 0
+ ],
+ [
+ 1787468400000,
+ 2031548.128159118,
+ 0
+ ],
+ [
+ 1787472000000,
+ 2030651.738186405,
+ 0
+ ],
+ [
+ 1787475600000,
+ 2030651.738186405,
+ 0
+ ],
+ [
+ 1787479200000,
+ 2030651.738186405,
+ 0
+ ],
+ [
+ 1787482800000,
+ 2030651.738186405,
+ 0
+ ],
+ [
+ 1787486400000,
+ 2031548.128159118,
+ 0
+ ],
+ [
+ 1787490000000,
+ 2031548.128159118,
+ 0
+ ],
+ [
+ 1787493600000,
+ 2031548.128159118,
+ 0
+ ],
+ [
+ 1787497200000,
+ 2031548.128159118,
+ 0
+ ],
+ [
+ 1787500800000,
+ 2030651.738186405,
+ 0
+ ],
+ [
+ 1787504400000,
+ 2029755.3482136922,
+ 0
+ ],
+ [
+ 1787508000000,
+ 2028858.9582409796,
+ 0
+ ],
+ [
+ 1787511600000,
+ 2028858.9582409796,
+ 0
+ ],
+ [
+ 1787515200000,
+ 2028858.9582409796,
+ 0
+ ],
+ [
+ 1787518800000,
+ 2028858.9582409796,
+ 0
+ ],
+ [
+ 1787522400000,
+ 2028858.9582409796,
+ 0
+ ],
+ [
+ 1787526000000,
+ 2027962.5682682667,
+ 0
+ ],
+ [
+ 1787529600000,
+ 2027962.5682682667,
+ 0
+ ],
+ [
+ 1787533200000,
+ 2027962.5682682667,
+ 0
+ ],
+ [
+ 1787536800000,
+ 2027066.1782955434,
+ 0
+ ],
+ [
+ 1787540400000,
+ 2027962.5682682667,
+ 0
+ ],
+ [
+ 1787544000000,
+ 2028858.9582409796,
+ 0
+ ],
+ [
+ 1787547600000,
+ 2027962.5682682667,
+ 0
+ ],
+ [
+ 1787551200000,
+ 2027066.1782955434,
+ 0
+ ],
+ [
+ 1787554800000,
+ 2027066.1782955434,
+ 0
+ ],
+ [
+ 1787558400000,
+ 2026169.788322841,
+ 0
+ ],
+ [
+ 1787562000000,
+ 2026169.788322841,
+ 0
+ ],
+ [
+ 1787565600000,
+ 2026169.788322841,
+ 0
+ ],
+ [
+ 1787569200000,
+ 2027066.1782955434,
+ 0
+ ],
+ [
+ 1787572800000,
+ 2027962.5682682667,
+ 0
+ ],
+ [
+ 1787576400000,
+ 2028858.9582409796,
+ 0
+ ],
+ [
+ 1787580000000,
+ 2027962.5682682667,
+ 0
+ ],
+ [
+ 1787583600000,
+ 2027066.1782955434,
+ 0
+ ],
+ [
+ 1787587200000,
+ 2026169.788322841,
+ 0
+ ],
+ [
+ 1787590800000,
+ 2026169.788322841,
+ 0
+ ],
+ [
+ 1787594400000,
+ 2025273.3983501282,
+ 0
+ ],
+ [
+ 1787598000000,
+ 2025273.3983501282,
+ 0
+ ],
+ [
+ 1787601600000,
+ 2025273.3983501282,
+ 0
+ ],
+ [
+ 1787605200000,
+ 2024377.008377405,
+ 0
+ ],
+ [
+ 1787608800000,
+ 2023480.6184046923,
+ 0
+ ],
+ [
+ 1787612400000,
+ 2021687.8384592666,
+ 0
+ ],
+ [
+ 1787616000000,
+ 2020791.4484865535,
+ 0
+ ],
+ [
+ 1787619600000,
+ 2019895.0585138411,
+ 0
+ ],
+ [
+ 1787623200000,
+ 2020791.4484865535,
+ 0
+ ],
+ [
+ 1787626800000,
+ 2020791.4484865535,
+ 0
+ ],
+ [
+ 1787630400000,
+ 2020791.4484865535,
+ 0
+ ],
+ [
+ 1787634000000,
+ 2020791.4484865535,
+ 0
+ ],
+ [
+ 1787637600000,
+ 2020791.4484865535,
+ 0
+ ],
+ [
+ 1787641200000,
+ 2021687.8384592666,
+ 0
+ ],
+ [
+ 1787644800000,
+ 2020791.4484865535,
+ 0
+ ],
+ [
+ 1787648400000,
+ 2023480.6184046923,
+ 0
+ ],
+ [
+ 1787652000000,
+ 2026169.788322841,
+ 0
+ ],
+ [
+ 1787655600000,
+ 2023480.6184046923,
+ 0
+ ],
+ [
+ 1787659200000,
+ 2022584.2284319894,
+ 0
+ ],
+ [
+ 1787662800000,
+ 2022584.2284319894,
+ 0
+ ],
+ [
+ 1787666400000,
+ 2021687.8384592666,
+ 0
+ ],
+ [
+ 1787670000000,
+ 2022584.2284319894,
+ 0
+ ],
+ [
+ 1787673600000,
+ 2026169.788322841,
+ 0
+ ],
+ [
+ 1787677200000,
+ 2027066.1782955434,
+ 0
+ ],
+ [
+ 1787680800000,
+ 2026169.788322841,
+ 0
+ ],
+ [
+ 1787684400000,
+ 2026169.788322841,
+ 0
+ ],
+ [
+ 1787688000000,
+ 2024377.008377405,
+ 0
+ ],
+ [
+ 1787691600000,
+ 2023480.6184046923,
+ 0
+ ],
+ [
+ 1787695200000,
+ 2021687.8384592666,
+ 0
+ ],
+ [
+ 1787698800000,
+ 2020791.4484865535,
+ 0
+ ],
+ [
+ 1787702400000,
+ 2019895.0585138411,
+ 0
+ ],
+ [
+ 1787706000000,
+ 2018998.6685411283,
+ 0
+ ],
+ [
+ 1787709600000,
+ 2019895.0585138411,
+ 0
+ ],
+ [
+ 1787713200000,
+ 2019895.0585138411,
+ 0
+ ],
+ [
+ 1787716800000,
+ 2018998.6685411283,
+ 0
+ ],
+ [
+ 1787720400000,
+ 2018998.6685411283,
+ 0
+ ],
+ [
+ 1787724000000,
+ 2018998.6685411283,
+ 0
+ ],
+ [
+ 1787727600000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787731200000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787734800000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787738400000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787742000000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787745600000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787749200000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787752800000,
+ 2017205.8885957024,
+ 0
+ ],
+ [
+ 1787756400000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787760000000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787763600000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787767200000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787770800000,
+ 2018102.2785684154,
+ 0
+ ],
+ [
+ 1787774400000,
+ 2017205.8885957024,
+ 0
+ ],
+ [
+ 1787778000000,
+ 2016309.4986229895,
+ 0
+ ],
+ [
+ 1787781600000,
+ 2015413.1086502767,
+ 0
+ ],
+ [
+ 1787785200000,
+ 2013620.3287048512,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Temp-Air.Inst.1Hour.0.Ccp-Rev.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Temp-Air.Inst.1Hour.0.Ccp-Rev.json
index 2725c2ef7..9e96014b98 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Temp-Air.Inst.1Hour.0.Ccp-Rev.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Temp-Air.Inst.1Hour.0.Ccp-Rev.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T00:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T15:00:00+00:00",
+ "end": "2026-08-26T23:00:00+00:00",
"interval": "PT1H",
"interval-offset": 0,
"name": "EUFA.Temp-Air.Inst.1Hour.0.Ccp-Rev",
"office-id": "SWT",
- "page": "MTc4NTExMDQwMDAwMHx8MTg0fHwzMDAwMDA=",
+ "page": "MTc4MDI3MjAwMDAwMHx8MzM3fHwzMDAwMDA=",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 1528,
+ "total": 2088,
"units": "F",
"value-columns": [
{
@@ -7668,6 +7668,2806 @@
1785769200000,
77.396,
0
+ ],
+ [
+ 1785772800000,
+ 81.75200000000001,
+ 0
+ ],
+ [
+ 1785776400000,
+ 85.74799999999999,
+ 0
+ ],
+ [
+ 1785780000000,
+ 87.85400000000001,
+ 0
+ ],
+ [
+ 1785783600000,
+ 89.27600000000001,
+ 0
+ ],
+ [
+ 1785787200000,
+ 90.554,
+ 0
+ ],
+ [
+ 1785790800000,
+ 91.382,
+ 0
+ ],
+ [
+ 1785794400000,
+ 92.19200000000001,
+ 0
+ ],
+ [
+ 1785798000000,
+ 92.55199999999999,
+ 0
+ ],
+ [
+ 1785801600000,
+ 91.67,
+ 0
+ ],
+ [
+ 1785805200000,
+ 89.20400000000001,
+ 0
+ ],
+ [
+ 1785808800000,
+ 85.082,
+ 0
+ ],
+ [
+ 1785812400000,
+ 80.816,
+ 0
+ ],
+ [
+ 1785816000000,
+ 79.646,
+ 0
+ ],
+ [
+ 1785819600000,
+ 78.602,
+ 0
+ ],
+ [
+ 1785823200000,
+ 76.55000000000001,
+ 0
+ ],
+ [
+ 1785826800000,
+ 74.57,
+ 0
+ ],
+ [
+ 1785830400000,
+ 73.814,
+ 0
+ ],
+ [
+ 1785834000000,
+ 73.184,
+ 0
+ ],
+ [
+ 1785837600000,
+ 72.554,
+ 0
+ ],
+ [
+ 1785841200000,
+ 72.14,
+ 0
+ ],
+ [
+ 1785844800000,
+ 71.816,
+ 0
+ ],
+ [
+ 1785848400000,
+ 72.23,
+ 0
+ ],
+ [
+ 1785852000000,
+ 74.588,
+ 0
+ ],
+ [
+ 1785855600000,
+ 79.016,
+ 0
+ ],
+ [
+ 1785859200000,
+ 83.26400000000001,
+ 0
+ ],
+ [
+ 1785862800000,
+ 87.548,
+ 0
+ ],
+ [
+ 1785866400000,
+ 91.544,
+ 0
+ ],
+ [
+ 1785870000000,
+ 94.37,
+ 0
+ ],
+ [
+ 1785873600000,
+ 95.648,
+ 0
+ ],
+ [
+ 1785877200000,
+ 96.584,
+ 0
+ ],
+ [
+ 1785880800000,
+ 96.98,
+ 0
+ ],
+ [
+ 1785884400000,
+ 96.53,
+ 0
+ ],
+ [
+ 1785888000000,
+ 95.342,
+ 0
+ ],
+ [
+ 1785891600000,
+ 92.49799999999999,
+ 0
+ ],
+ [
+ 1785895200000,
+ 88.142,
+ 0
+ ],
+ [
+ 1785898800000,
+ 86.504,
+ 0
+ ],
+ [
+ 1785902400000,
+ 82.52600000000001,
+ 0
+ ],
+ [
+ 1785906000000,
+ 82.958,
+ 0
+ ],
+ [
+ 1785909600000,
+ 81.32,
+ 0
+ ],
+ [
+ 1785913200000,
+ 79.59200000000001,
+ 0
+ ],
+ [
+ 1785916800000,
+ 80.20400000000001,
+ 0
+ ],
+ [
+ 1785920400000,
+ 81.644,
+ 0
+ ],
+ [
+ 1785924000000,
+ 79.80799999999999,
+ 0
+ ],
+ [
+ 1785927600000,
+ 78.29599999999999,
+ 0
+ ],
+ [
+ 1785931200000,
+ 75.542,
+ 0
+ ],
+ [
+ 1785934800000,
+ 75.452,
+ 0
+ ],
+ [
+ 1785938400000,
+ 77.97200000000001,
+ 0
+ ],
+ [
+ 1785942000000,
+ 82.364,
+ 0
+ ],
+ [
+ 1785945600000,
+ 87.08000000000001,
+ 0
+ ],
+ [
+ 1785949200000,
+ 92.372,
+ 0
+ ],
+ [
+ 1785952800000,
+ 94.63999999999999,
+ 0
+ ],
+ [
+ 1785956400000,
+ 96.206,
+ 0
+ ],
+ [
+ 1785960000000,
+ 96.962,
+ 0
+ ],
+ [
+ 1785963600000,
+ 96.602,
+ 0
+ ],
+ [
+ 1785967200000,
+ 98.078,
+ 0
+ ],
+ [
+ 1785970800000,
+ 98.366,
+ 0
+ ],
+ [
+ 1785974400000,
+ 97.898,
+ 0
+ ],
+ [
+ 1785978000000,
+ 94.964,
+ 0
+ ],
+ [
+ 1785981600000,
+ 91.076,
+ 0
+ ],
+ [
+ 1785985200000,
+ 88.53800000000001,
+ 0
+ ],
+ [
+ 1785988800000,
+ 87.494,
+ 0
+ ],
+ [
+ 1785992400000,
+ 81.644,
+ 0
+ ],
+ [
+ 1785996000000,
+ 78.926,
+ 0
+ ],
+ [
+ 1785999600000,
+ 84.30799999999999,
+ 0
+ ],
+ [
+ 1786003200000,
+ 84.128,
+ 0
+ ],
+ [
+ 1786006800000,
+ 84.362,
+ 0
+ ],
+ [
+ 1786010400000,
+ 83.26400000000001,
+ 0
+ ],
+ [
+ 1786014000000,
+ 82.49000000000001,
+ 0
+ ],
+ [
+ 1786017600000,
+ 81.878,
+ 0
+ ],
+ [
+ 1786021200000,
+ 81.78800000000001,
+ 0
+ ],
+ [
+ 1786024800000,
+ 83.678,
+ 0
+ ],
+ [
+ 1786028400000,
+ 87.098,
+ 0
+ ],
+ [
+ 1786032000000,
+ 88.61,
+ 0
+ ],
+ [
+ 1786035600000,
+ 91.274,
+ 0
+ ],
+ [
+ 1786039200000,
+ 92.768,
+ 0
+ ],
+ [
+ 1786042800000,
+ 93.36200000000001,
+ 0
+ ],
+ [
+ 1786046400000,
+ 95.864,
+ 0
+ ],
+ [
+ 1786050000000,
+ 96.602,
+ 0
+ ],
+ [
+ 1786053600000,
+ 97.93400000000001,
+ 0
+ ],
+ [
+ 1786057200000,
+ 97.43,
+ 0
+ ],
+ [
+ 1786060800000,
+ 98.906,
+ 0
+ ],
+ [
+ 1786064400000,
+ 98.06,
+ 0
+ ],
+ [
+ 1786068000000,
+ 92.318,
+ 0
+ ],
+ [
+ 1786071600000,
+ 89.816,
+ 0
+ ],
+ [
+ 1786075200000,
+ 89.042,
+ 0
+ ],
+ [
+ 1786078800000,
+ 86.9,
+ 0
+ ],
+ [
+ 1786082400000,
+ 80.816,
+ 0
+ ],
+ [
+ 1786086000000,
+ 81.554,
+ 0
+ ],
+ [
+ 1786089600000,
+ 81.392,
+ 0
+ ],
+ [
+ 1786093200000,
+ 79.07,
+ 0
+ ],
+ [
+ 1786096800000,
+ 77.774,
+ 0
+ ],
+ [
+ 1786100400000,
+ 76.60400000000001,
+ 0
+ ],
+ [
+ 1786104000000,
+ 75.506,
+ 0
+ ],
+ [
+ 1786107600000,
+ 76.082,
+ 0
+ ],
+ [
+ 1786111200000,
+ 79.73599999999999,
+ 0
+ ],
+ [
+ 1786114800000,
+ 85.532,
+ 0
+ ],
+ [
+ 1786118400000,
+ 87.44,
+ 0
+ ],
+ [
+ 1786122000000,
+ 90.176,
+ 0
+ ],
+ [
+ 1786125600000,
+ 92.94800000000001,
+ 0
+ ],
+ [
+ 1786129200000,
+ 94.47800000000001,
+ 0
+ ],
+ [
+ 1786132800000,
+ 94.80199999999999,
+ 0
+ ],
+ [
+ 1786136400000,
+ 94.172,
+ 0
+ ],
+ [
+ 1786140000000,
+ 87.206,
+ 0
+ ],
+ [
+ 1786143600000,
+ 87.368,
+ 0
+ ],
+ [
+ 1786147200000,
+ 88.268,
+ 0
+ ],
+ [
+ 1786150800000,
+ 86.95400000000001,
+ 0
+ ],
+ [
+ 1786154400000,
+ 84.362,
+ 0
+ ],
+ [
+ 1786158000000,
+ 80.024,
+ 0
+ ],
+ [
+ 1786161600000,
+ 79.43,
+ 0
+ ],
+ [
+ 1786165200000,
+ 78.62,
+ 0
+ ],
+ [
+ 1786168800000,
+ 78.116,
+ 0
+ ],
+ [
+ 1786172400000,
+ 77.19800000000001,
+ 0
+ ],
+ [
+ 1786176000000,
+ 74.84,
+ 0
+ ],
+ [
+ 1786179600000,
+ 73.814,
+ 0
+ ],
+ [
+ 1786183200000,
+ 74.21000000000001,
+ 0
+ ],
+ [
+ 1786186800000,
+ 73.346,
+ 0
+ ],
+ [
+ 1786190400000,
+ 72.392,
+ 0
+ ],
+ [
+ 1786194000000,
+ 72.75200000000001,
+ 0
+ ],
+ [
+ 1786197600000,
+ 75.74000000000001,
+ 0
+ ],
+ [
+ 1786201200000,
+ 79.394,
+ 0
+ ],
+ [
+ 1786204800000,
+ 84.506,
+ 0
+ ],
+ [
+ 1786208400000,
+ 90.77,
+ 0
+ ],
+ [
+ 1786212000000,
+ 91.346,
+ 0
+ ],
+ [
+ 1786215600000,
+ 93.146,
+ 0
+ ],
+ [
+ 1786219200000,
+ 94.334,
+ 0
+ ],
+ [
+ 1786222800000,
+ 95.918,
+ 0
+ ],
+ [
+ 1786226400000,
+ 99.068,
+ 0
+ ],
+ [
+ 1786230000000,
+ 96.62,
+ 0
+ ],
+ [
+ 1786233600000,
+ 95.036,
+ 0
+ ],
+ [
+ 1786237200000,
+ 93.182,
+ 0
+ ],
+ [
+ 1786240800000,
+ 90.482,
+ 0
+ ],
+ [
+ 1786244400000,
+ 87.89,
+ 0
+ ],
+ [
+ 1786248000000,
+ 85.262,
+ 0
+ ],
+ [
+ 1786251600000,
+ 83.282,
+ 0
+ ],
+ [
+ 1786255200000,
+ 81.78800000000001,
+ 0
+ ],
+ [
+ 1786258800000,
+ 81.32,
+ 0
+ ],
+ [
+ 1786262400000,
+ 79.48400000000001,
+ 0
+ ],
+ [
+ 1786266000000,
+ 78.494,
+ 0
+ ],
+ [
+ 1786269600000,
+ 77.414,
+ 0
+ ],
+ [
+ 1786273200000,
+ 76.49600000000001,
+ 0
+ ],
+ [
+ 1786276800000,
+ 75.632,
+ 0
+ ],
+ [
+ 1786280400000,
+ 77.468,
+ 0
+ ],
+ [
+ 1786284000000,
+ 79.34,
+ 0
+ ],
+ [
+ 1786287600000,
+ 83.282,
+ 0
+ ],
+ [
+ 1786291200000,
+ 86.81,
+ 0
+ ],
+ [
+ 1786294800000,
+ 90.428,
+ 0
+ ],
+ [
+ 1786298400000,
+ 93.488,
+ 0
+ ],
+ [
+ 1786302000000,
+ 94.946,
+ 0
+ ],
+ [
+ 1786305600000,
+ 96.71000000000001,
+ 0
+ ],
+ [
+ 1786309200000,
+ 97.394,
+ 0
+ ],
+ [
+ 1786312800000,
+ 97.538,
+ 0
+ ],
+ [
+ 1786316400000,
+ 97.7,
+ 0
+ ],
+ [
+ 1786320000000,
+ 97.574,
+ 0
+ ],
+ [
+ 1786323600000,
+ 95.162,
+ 0
+ ],
+ [
+ 1786327200000,
+ 92.174,
+ 0
+ ],
+ [
+ 1786330800000,
+ 90.356,
+ 0
+ ],
+ [
+ 1786334400000,
+ 88.34,
+ 0
+ ],
+ [
+ 1786338000000,
+ 87.314,
+ 0
+ ],
+ [
+ 1786341600000,
+ 86.30600000000001,
+ 0
+ ],
+ [
+ 1786345200000,
+ 84.938,
+ 0
+ ],
+ [
+ 1786348800000,
+ 83.98400000000001,
+ 0
+ ],
+ [
+ 1786352400000,
+ 83.19200000000001,
+ 0
+ ],
+ [
+ 1786356000000,
+ 82.184,
+ 0
+ ],
+ [
+ 1786359600000,
+ 81.19399999999999,
+ 0
+ ],
+ [
+ 1786363200000,
+ 80.22200000000001,
+ 0
+ ],
+ [
+ 1786366800000,
+ 80.50999999999999,
+ 0
+ ],
+ [
+ 1786370400000,
+ 82.598,
+ 0
+ ],
+ [
+ 1786374000000,
+ 85.46000000000001,
+ 0
+ ],
+ [
+ 1786377600000,
+ 88.16,
+ 0
+ ],
+ [
+ 1786381200000,
+ 91.13,
+ 0
+ ],
+ [
+ 1786384800000,
+ 92.94800000000001,
+ 0
+ ],
+ [
+ 1786388400000,
+ 95.036,
+ 0
+ ],
+ [
+ 1786392000000,
+ 95.126,
+ 0
+ ],
+ [
+ 1786395600000,
+ 96.818,
+ 0
+ ],
+ [
+ 1786399200000,
+ 97.88000000000001,
+ 0
+ ],
+ [
+ 1786402800000,
+ 98.51,
+ 0
+ ],
+ [
+ 1786406400000,
+ 98.438,
+ 0
+ ],
+ [
+ 1786410000000,
+ 95.72,
+ 0
+ ],
+ [
+ 1786413600000,
+ 92.876,
+ 0
+ ],
+ [
+ 1786417200000,
+ 90.08600000000001,
+ 0
+ ],
+ [
+ 1786420800000,
+ 87.94399999999999,
+ 0
+ ],
+ [
+ 1786424400000,
+ 85.838,
+ 0
+ ],
+ [
+ 1786428000000,
+ 83.03,
+ 0
+ ],
+ [
+ 1786431600000,
+ 84.30799999999999,
+ 0
+ ],
+ [
+ 1786435200000,
+ 83.372,
+ 0
+ ],
+ [
+ 1786438800000,
+ 82.634,
+ 0
+ ],
+ [
+ 1786442400000,
+ 82.4,
+ 0
+ ],
+ [
+ 1786446000000,
+ 81.356,
+ 0
+ ],
+ [
+ 1786449600000,
+ 80.50999999999999,
+ 0
+ ],
+ [
+ 1786453200000,
+ 80.132,
+ 0
+ ],
+ [
+ 1786456800000,
+ 82.49000000000001,
+ 0
+ ],
+ [
+ 1786460400000,
+ 85.78399999999999,
+ 0
+ ],
+ [
+ 1786464000000,
+ 88.826,
+ 0
+ ],
+ [
+ 1786467600000,
+ 91.274,
+ 0
+ ],
+ [
+ 1786471200000,
+ 93.00200000000001,
+ 0
+ ],
+ [
+ 1786474800000,
+ 95.288,
+ 0
+ ],
+ [
+ 1786478400000,
+ 96.098,
+ 0
+ ],
+ [
+ 1786482000000,
+ 97.538,
+ 0
+ ],
+ [
+ 1786485600000,
+ 98.186,
+ 0
+ ],
+ [
+ 1786489200000,
+ 98.024,
+ 0
+ ],
+ [
+ 1786492800000,
+ 98.15,
+ 0
+ ],
+ [
+ 1786496400000,
+ 96.116,
+ 0
+ ],
+ [
+ 1786500000000,
+ 93.28999999999999,
+ 0
+ ],
+ [
+ 1786503600000,
+ 90.86000000000001,
+ 0
+ ],
+ [
+ 1786507200000,
+ 89.024,
+ 0
+ ],
+ [
+ 1786510800000,
+ 87.602,
+ 0
+ ],
+ [
+ 1786514400000,
+ 86.756,
+ 0
+ ],
+ [
+ 1786518000000,
+ 86.55799999999999,
+ 0
+ ],
+ [
+ 1786521600000,
+ 85.82,
+ 0
+ ],
+ [
+ 1786525200000,
+ 84.92,
+ 0
+ ],
+ [
+ 1786528800000,
+ 84.434,
+ 0
+ ],
+ [
+ 1786532400000,
+ 83.732,
+ 0
+ ],
+ [
+ 1786536000000,
+ 83.48,
+ 0
+ ],
+ [
+ 1786539600000,
+ 82.922,
+ 0
+ ],
+ [
+ 1786543200000,
+ 84.72200000000001,
+ 0
+ ],
+ [
+ 1786546800000,
+ 86.882,
+ 0
+ ],
+ [
+ 1786550400000,
+ 89.366,
+ 0
+ ],
+ [
+ 1786554000000,
+ 91.868,
+ 0
+ ],
+ [
+ 1786557600000,
+ 94.55000000000001,
+ 0
+ ],
+ [
+ 1786561200000,
+ 95.99,
+ 0
+ ],
+ [
+ 1786564800000,
+ 97.664,
+ 0
+ ],
+ [
+ 1786568400000,
+ 99.014,
+ 0
+ ],
+ [
+ 1786572000000,
+ 99.248,
+ 0
+ ],
+ [
+ 1786575600000,
+ 99.14,
+ 0
+ ],
+ [
+ 1786579200000,
+ 99.08600000000001,
+ 0
+ ],
+ [
+ 1786582800000,
+ 97.214,
+ 0
+ ],
+ [
+ 1786586400000,
+ 94.316,
+ 0
+ ],
+ [
+ 1786590000000,
+ 91.976,
+ 0
+ ],
+ [
+ 1786593600000,
+ 89.384,
+ 0
+ ],
+ [
+ 1786597200000,
+ 87.836,
+ 0
+ ],
+ [
+ 1786600800000,
+ 87.368,
+ 0
+ ],
+ [
+ 1786604400000,
+ 88.16,
+ 0
+ ],
+ [
+ 1786608000000,
+ 87.368,
+ 0
+ ],
+ [
+ 1786611600000,
+ 86.53999999999999,
+ 0
+ ],
+ [
+ 1786615200000,
+ 85.892,
+ 0
+ ],
+ [
+ 1786618800000,
+ 85.226,
+ 0
+ ],
+ [
+ 1786622400000,
+ 84.686,
+ 0
+ ],
+ [
+ 1786626000000,
+ 85.064,
+ 0
+ ],
+ [
+ 1786629600000,
+ 87.098,
+ 0
+ ],
+ [
+ 1786633200000,
+ 88.916,
+ 0
+ ],
+ [
+ 1786636800000,
+ 91.56200000000001,
+ 0
+ ],
+ [
+ 1786640400000,
+ 93.686,
+ 0
+ ],
+ [
+ 1786644000000,
+ 95.738,
+ 0
+ ],
+ [
+ 1786647600000,
+ 97.376,
+ 0
+ ],
+ [
+ 1786651200000,
+ 99.068,
+ 0
+ ],
+ [
+ 1786654800000,
+ 99.914,
+ 0
+ ],
+ [
+ 1786658400000,
+ 100.56200000000001,
+ 0
+ ],
+ [
+ 1786662000000,
+ 99.842,
+ 0
+ ],
+ [
+ 1786665600000,
+ 99.212,
+ 0
+ ],
+ [
+ 1786669200000,
+ 97.43,
+ 0
+ ],
+ [
+ 1786672800000,
+ 94.316,
+ 0
+ ],
+ [
+ 1786676400000,
+ 92.102,
+ 0
+ ],
+ [
+ 1786680000000,
+ 90.69800000000001,
+ 0
+ ],
+ [
+ 1786683600000,
+ 88.34,
+ 0
+ ],
+ [
+ 1786687200000,
+ 86.144,
+ 0
+ ],
+ [
+ 1786690800000,
+ 86.378,
+ 0
+ ],
+ [
+ 1786694400000,
+ 85.712,
+ 0
+ ],
+ [
+ 1786698000000,
+ 85.712,
+ 0
+ ],
+ [
+ 1786701600000,
+ 85.19,
+ 0
+ ],
+ [
+ 1786705200000,
+ 85.172,
+ 0
+ ],
+ [
+ 1786708800000,
+ 84.074,
+ 0
+ ],
+ [
+ 1786712400000,
+ 83.426,
+ 0
+ ],
+ [
+ 1786716000000,
+ 85.60400000000001,
+ 0
+ ],
+ [
+ 1786719600000,
+ 87.782,
+ 0
+ ],
+ [
+ 1786723200000,
+ 89.528,
+ 0
+ ],
+ [
+ 1786726800000,
+ 92.12,
+ 0
+ ],
+ [
+ 1786730400000,
+ 94.388,
+ 0
+ ],
+ [
+ 1786734000000,
+ 96.26,
+ 0
+ ],
+ [
+ 1786737600000,
+ 98.20400000000001,
+ 0
+ ],
+ [
+ 1786741200000,
+ 99.73400000000001,
+ 0
+ ],
+ [
+ 1786744800000,
+ 100.13000000000001,
+ 0
+ ],
+ [
+ 1786748400000,
+ 99.932,
+ 0
+ ],
+ [
+ 1786752000000,
+ 98.996,
+ 0
+ ],
+ [
+ 1786755600000,
+ 97.07,
+ 0
+ ],
+ [
+ 1786759200000,
+ 94.01,
+ 0
+ ],
+ [
+ 1786762800000,
+ 91.544,
+ 0
+ ],
+ [
+ 1786766400000,
+ 87.566,
+ 0
+ ],
+ [
+ 1786770000000,
+ 83.31800000000001,
+ 0
+ ],
+ [
+ 1786773600000,
+ 81.23,
+ 0
+ ],
+ [
+ 1786777200000,
+ 82.652,
+ 0
+ ],
+ [
+ 1786780800000,
+ 81.98599999999999,
+ 0
+ ],
+ [
+ 1786784400000,
+ 83.94800000000001,
+ 0
+ ],
+ [
+ 1786788000000,
+ 82.832,
+ 0
+ ],
+ [
+ 1786791600000,
+ 80.78,
+ 0
+ ],
+ [
+ 1786795200000,
+ 80.564,
+ 0
+ ],
+ [
+ 1786798800000,
+ 81.14,
+ 0
+ ],
+ [
+ 1786802400000,
+ 84.416,
+ 0
+ ],
+ [
+ 1786806000000,
+ 87.656,
+ 0
+ ],
+ [
+ 1786809600000,
+ 90.08600000000001,
+ 0
+ ],
+ [
+ 1786813200000,
+ 92.624,
+ 0
+ ],
+ [
+ 1786816800000,
+ 94.82,
+ 0
+ ],
+ [
+ 1786820400000,
+ 96.314,
+ 0
+ ],
+ [
+ 1786824000000,
+ 97.898,
+ 0
+ ],
+ [
+ 1786827600000,
+ 99.23,
+ 0
+ ],
+ [
+ 1786831200000,
+ 98.87,
+ 0
+ ],
+ [
+ 1786834800000,
+ 98.76200000000001,
+ 0
+ ],
+ [
+ 1786838400000,
+ 98.942,
+ 0
+ ],
+ [
+ 1786842000000,
+ 97.304,
+ 0
+ ],
+ [
+ 1786845600000,
+ 94.47800000000001,
+ 0
+ ],
+ [
+ 1786849200000,
+ 92.156,
+ 0
+ ],
+ [
+ 1786852800000,
+ 90.536,
+ 0
+ ],
+ [
+ 1786856400000,
+ 88.916,
+ 0
+ ],
+ [
+ 1786860000000,
+ 86.99000000000001,
+ 0
+ ],
+ [
+ 1786863600000,
+ 86.99000000000001,
+ 0
+ ],
+ [
+ 1786867200000,
+ 86.9,
+ 0
+ ],
+ [
+ 1786870800000,
+ 86.396,
+ 0
+ ],
+ [
+ 1786874400000,
+ 85.838,
+ 0
+ ],
+ [
+ 1786878000000,
+ 86.19800000000001,
+ 0
+ ],
+ [
+ 1786881600000,
+ 86.27,
+ 0
+ ],
+ [
+ 1786885200000,
+ 86.43199999999999,
+ 0
+ ],
+ [
+ 1786888800000,
+ 87.656,
+ 0
+ ],
+ [
+ 1786892400000,
+ 89.582,
+ 0
+ ],
+ [
+ 1786896000000,
+ 91.68799999999999,
+ 0
+ ],
+ [
+ 1786899600000,
+ 93.65,
+ 0
+ ],
+ [
+ 1786903200000,
+ 95.684,
+ 0
+ ],
+ [
+ 1786906800000,
+ 97.592,
+ 0
+ ],
+ [
+ 1786910400000,
+ 99.41000000000001,
+ 0
+ ],
+ [
+ 1786914000000,
+ 99.284,
+ 0
+ ],
+ [
+ 1786917600000,
+ 100.148,
+ 0
+ ],
+ [
+ 1786921200000,
+ 100.166,
+ 0
+ ],
+ [
+ 1786924800000,
+ 101.444,
+ 0
+ ],
+ [
+ 1786928400000,
+ 100.274,
+ 0
+ ],
+ [
+ 1786932000000,
+ 97.394,
+ 0
+ ],
+ [
+ 1786935600000,
+ 94.928,
+ 0
+ ],
+ [
+ 1786939200000,
+ 92.84,
+ 0
+ ],
+ [
+ 1786942800000,
+ 90.95,
+ 0
+ ],
+ [
+ 1786946400000,
+ 90.716,
+ 0
+ ],
+ [
+ 1786950000000,
+ 89.834,
+ 0
+ ],
+ [
+ 1786953600000,
+ 87.782,
+ 0
+ ],
+ [
+ 1786957200000,
+ 85.51400000000001,
+ 0
+ ],
+ [
+ 1786960800000,
+ 82.724,
+ 0
+ ],
+ [
+ 1786964400000,
+ 81.356,
+ 0
+ ],
+ [
+ 1786968000000,
+ 79.952,
+ 0
+ ],
+ [
+ 1786971600000,
+ 78.872,
+ 0
+ ],
+ [
+ 1786975200000,
+ 82.868,
+ 0
+ ],
+ [
+ 1786978800000,
+ 82.52600000000001,
+ 0
+ ],
+ [
+ 1786982400000,
+ 79.826,
+ 0
+ ],
+ [
+ 1786986000000,
+ 86.34200000000001,
+ 0
+ ],
+ [
+ 1786989600000,
+ 89.42,
+ 0
+ ],
+ [
+ 1786993200000,
+ 91.13,
+ 0
+ ],
+ [
+ 1786996800000,
+ 88.898,
+ 0
+ ],
+ [
+ 1787000400000,
+ 87.566,
+ 0
+ ],
+ [
+ 1787004000000,
+ 93.074,
+ 0
+ ],
+ [
+ 1787007600000,
+ 92.40800000000002,
+ 0
+ ],
+ [
+ 1787011200000,
+ 89.42,
+ 0
+ ],
+ [
+ 1787014800000,
+ 87.89,
+ 0
+ ],
+ [
+ 1787018400000,
+ 85.28,
+ 0
+ ],
+ [
+ 1787022000000,
+ 83.21000000000001,
+ 0
+ ],
+ [
+ 1787025600000,
+ 81.122,
+ 0
+ ],
+ [
+ 1787029200000,
+ 81.212,
+ 0
+ ],
+ [
+ 1787032800000,
+ 80.06,
+ 0
+ ],
+ [
+ 1787036400000,
+ 79.646,
+ 0
+ ],
+ [
+ 1787040000000,
+ 78.116,
+ 0
+ ],
+ [
+ 1787043600000,
+ 77.072,
+ 0
+ ],
+ [
+ 1787047200000,
+ 75.938,
+ 0
+ ],
+ [
+ 1787050800000,
+ 75.398,
+ 0
+ ],
+ [
+ 1787054400000,
+ 74.696,
+ 0
+ ],
+ [
+ 1787058000000,
+ 75.254,
+ 0
+ ],
+ [
+ 1787061600000,
+ 77.81,
+ 0
+ ],
+ [
+ 1787065200000,
+ 81.93199999999999,
+ 0
+ ],
+ [
+ 1787068800000,
+ 87.69200000000001,
+ 0
+ ],
+ [
+ 1787072400000,
+ 94.208,
+ 0
+ ],
+ [
+ 1787076000000,
+ 94.622,
+ 0
+ ],
+ [
+ 1787079600000,
+ 98.474,
+ 0
+ ],
+ [
+ 1787083200000,
+ 100.724,
+ 0
+ ],
+ [
+ 1787086800000,
+ 101.03,
+ 0
+ ],
+ [
+ 1787090400000,
+ 103.244,
+ 0
+ ],
+ [
+ 1787094000000,
+ 103.58600000000001,
+ 0
+ ],
+ [
+ 1787097600000,
+ 102.884,
+ 0
+ ],
+ [
+ 1787101200000,
+ 103.85600000000001,
+ 0
+ ],
+ [
+ 1787104800000,
+ 98.924,
+ 0
+ ],
+ [
+ 1787108400000,
+ 95.774,
+ 0
+ ],
+ [
+ 1787112000000,
+ 94.208,
+ 0
+ ],
+ [
+ 1787115600000,
+ 92.642,
+ 0
+ ],
+ [
+ 1787119200000,
+ 91.52600000000001,
+ 0
+ ],
+ [
+ 1787122800000,
+ 91.364,
+ 0
+ ],
+ [
+ 1787126400000,
+ 90.96799999999999,
+ 0
+ ],
+ [
+ 1787130000000,
+ 88.826,
+ 0
+ ],
+ [
+ 1787133600000,
+ 88.16,
+ 0
+ ],
+ [
+ 1787137200000,
+ 88.196,
+ 0
+ ],
+ [
+ 1787140800000,
+ 86.95400000000001,
+ 0
+ ],
+ [
+ 1787144400000,
+ 87.656,
+ 0
+ ],
+ [
+ 1787148000000,
+ 89.69,
+ 0
+ ],
+ [
+ 1787151600000,
+ 92.588,
+ 0
+ ],
+ [
+ 1787155200000,
+ 95.936,
+ 0
+ ],
+ [
+ 1787158800000,
+ 99.35600000000001,
+ 0
+ ],
+ [
+ 1787162400000,
+ 98.186,
+ 0
+ ],
+ [
+ 1787166000000,
+ 98.63600000000001,
+ 0
+ ],
+ [
+ 1787169600000,
+ 99.716,
+ 0
+ ],
+ [
+ 1787173200000,
+ 101.822,
+ 0
+ ],
+ [
+ 1787176800000,
+ 103.568,
+ 0
+ ],
+ [
+ 1787180400000,
+ 103.676,
+ 0
+ ],
+ [
+ 1787184000000,
+ 105.314,
+ 0
+ ],
+ [
+ 1787187600000,
+ 102.902,
+ 0
+ ],
+ [
+ 1787191200000,
+ 100.472,
+ 0
+ ],
+ [
+ 1787194800000,
+ 98.366,
+ 0
+ ],
+ [
+ 1787198400000,
+ 94.58600000000001,
+ 0
+ ],
+ [
+ 1787202000000,
+ 95.144,
+ 0
+ ],
+ [
+ 1787205600000,
+ 92.822,
+ 0
+ ],
+ [
+ 1787209200000,
+ 91.13,
+ 0
+ ],
+ [
+ 1787212800000,
+ 87.638,
+ 0
+ ],
+ [
+ 1787216400000,
+ 87.94399999999999,
+ 0
+ ],
+ [
+ 1787220000000,
+ 87.62,
+ 0
+ ],
+ [
+ 1787223600000,
+ 86.126,
+ 0
+ ],
+ [
+ 1787227200000,
+ 85.64,
+ 0
+ ],
+ [
+ 1787230800000,
+ 82.508,
+ 0
+ ],
+ [
+ 1787234400000,
+ 83.282,
+ 0
+ ],
+ [
+ 1787238000000,
+ 85.118,
+ 0
+ ],
+ [
+ 1787241600000,
+ 88.268,
+ 0
+ ],
+ [
+ 1787245200000,
+ 90.77,
+ 0
+ ],
+ [
+ 1787248800000,
+ 91.74199999999999,
+ 0
+ ],
+ [
+ 1787252400000,
+ 93.38,
+ 0
+ ],
+ [
+ 1787256000000,
+ 95.53999999999999,
+ 0
+ ],
+ [
+ 1787259600000,
+ 98.006,
+ 0
+ ],
+ [
+ 1787263200000,
+ 98.402,
+ 0
+ ],
+ [
+ 1787266800000,
+ 101.12,
+ 0
+ ],
+ [
+ 1787270400000,
+ 102.47,
+ 0
+ ],
+ [
+ 1787274000000,
+ 101.444,
+ 0
+ ],
+ [
+ 1787277600000,
+ 97.232,
+ 0
+ ],
+ [
+ 1787281200000,
+ 94.13600000000001,
+ 0
+ ],
+ [
+ 1787284800000,
+ 91.814,
+ 0
+ ],
+ [
+ 1787288400000,
+ 90.10400000000001,
+ 0
+ ],
+ [
+ 1787292000000,
+ 87.71000000000001,
+ 0
+ ],
+ [
+ 1787295600000,
+ 86.828,
+ 0
+ ],
+ [
+ 1787299200000,
+ 85.91,
+ 0
+ ],
+ [
+ 1787302800000,
+ 85.56800000000001,
+ 0
+ ],
+ [
+ 1787306400000,
+ 83.84,
+ 0
+ ],
+ [
+ 1787310000000,
+ 82.418,
+ 0
+ ],
+ [
+ 1787313600000,
+ 79.574,
+ 0
+ ],
+ [
+ 1787317200000,
+ 75.416,
+ 0
+ ],
+ [
+ 1787320800000,
+ 77.48599999999999,
+ 0
+ ],
+ [
+ 1787324400000,
+ 77.45,
+ 0
+ ],
+ [
+ 1787328000000,
+ 79.16,
+ 0
+ ],
+ [
+ 1787331600000,
+ 81.80600000000001,
+ 0
+ ],
+ [
+ 1787335200000,
+ 85.69399999999999,
+ 0
+ ],
+ [
+ 1787338800000,
+ 87.89,
+ 0
+ ],
+ [
+ 1787342400000,
+ 90.608,
+ 0
+ ],
+ [
+ 1787346000000,
+ 95.72,
+ 0
+ ],
+ [
+ 1787349600000,
+ 97.574,
+ 0
+ ],
+ [
+ 1787353200000,
+ 97.304,
+ 0
+ ],
+ [
+ 1787356800000,
+ 96.62,
+ 0
+ ],
+ [
+ 1787360400000,
+ 97.412,
+ 0
+ ],
+ [
+ 1787364000000,
+ 91.52600000000001,
+ 0
+ ],
+ [
+ 1787367600000,
+ 90.356,
+ 0
+ ],
+ [
+ 1787371200000,
+ 87.512,
+ 0
+ ],
+ [
+ 1787374800000,
+ 87.656,
+ 0
+ ],
+ [
+ 1787378400000,
+ 86.918,
+ 0
+ ],
+ [
+ 1787382000000,
+ 86.144,
+ 0
+ ],
+ [
+ 1787385600000,
+ 81.032,
+ 0
+ ],
+ [
+ 1787389200000,
+ 76.622,
+ 0
+ ],
+ [
+ 1787392800000,
+ 75.614,
+ 0
+ ],
+ [
+ 1787396400000,
+ 75.164,
+ 0
+ ],
+ [
+ 1787400000000,
+ 74.012,
+ 0
+ ],
+ [
+ 1787403600000,
+ 74.35400000000001,
+ 0
+ ],
+ [
+ 1787407200000,
+ 79.34,
+ 0
+ ],
+ [
+ 1787410800000,
+ 85.424,
+ 0
+ ],
+ [
+ 1787414400000,
+ 87.44,
+ 0
+ ],
+ [
+ 1787418000000,
+ 85.838,
+ 0
+ ],
+ [
+ 1787421600000,
+ 85.37,
+ 0
+ ],
+ [
+ 1787425200000,
+ 85.424,
+ 0
+ ],
+ [
+ 1787428800000,
+ 86.666,
+ 0
+ ],
+ [
+ 1787432400000,
+ 90.932,
+ 0
+ ],
+ [
+ 1787436000000,
+ 92.786,
+ 0
+ ],
+ [
+ 1787439600000,
+ 90.644,
+ 0
+ ],
+ [
+ 1787443200000,
+ 90.536,
+ 0
+ ],
+ [
+ 1787446800000,
+ 89.348,
+ 0
+ ],
+ [
+ 1787450400000,
+ 86.23400000000001,
+ 0
+ ],
+ [
+ 1787454000000,
+ 82.166,
+ 0
+ ],
+ [
+ 1787457600000,
+ 80.834,
+ 0
+ ],
+ [
+ 1787461200000,
+ 79.934,
+ 0
+ ],
+ [
+ 1787464800000,
+ 80.258,
+ 0
+ ],
+ [
+ 1787468400000,
+ 78.29599999999999,
+ 0
+ ],
+ [
+ 1787472000000,
+ 77.396,
+ 0
+ ],
+ [
+ 1787475600000,
+ 76.1,
+ 0
+ ],
+ [
+ 1787479200000,
+ 74.786,
+ 0
+ ],
+ [
+ 1787482800000,
+ 74.19200000000001,
+ 0
+ ],
+ [
+ 1787486400000,
+ 72.75200000000001,
+ 0
+ ],
+ [
+ 1787490000000,
+ 72.80600000000001,
+ 0
+ ],
+ [
+ 1787493600000,
+ 74.804,
+ 0
+ ],
+ [
+ 1787497200000,
+ 78.72800000000001,
+ 0
+ ],
+ [
+ 1787500800000,
+ 82.562,
+ 0
+ ],
+ [
+ 1787504400000,
+ 86.126,
+ 0
+ ],
+ [
+ 1787508000000,
+ 88.73599999999999,
+ 0
+ ],
+ [
+ 1787511600000,
+ 91.88600000000001,
+ 0
+ ],
+ [
+ 1787515200000,
+ 94.352,
+ 0
+ ],
+ [
+ 1787518800000,
+ 95.648,
+ 0
+ ],
+ [
+ 1787522400000,
+ 96.116,
+ 0
+ ],
+ [
+ 1787526000000,
+ 96.674,
+ 0
+ ],
+ [
+ 1787529600000,
+ 96.71000000000001,
+ 0
+ ],
+ [
+ 1787533200000,
+ 94.01,
+ 0
+ ],
+ [
+ 1787536800000,
+ 90.21200000000002,
+ 0
+ ],
+ [
+ 1787540400000,
+ 86.738,
+ 0
+ ],
+ [
+ 1787544000000,
+ 85.69399999999999,
+ 0
+ ],
+ [
+ 1787547600000,
+ 86.0,
+ 0
+ ],
+ [
+ 1787551200000,
+ 84.398,
+ 0
+ ],
+ [
+ 1787554800000,
+ 84.09200000000001,
+ 0
+ ],
+ [
+ 1787558400000,
+ 82.724,
+ 0
+ ],
+ [
+ 1787562000000,
+ 81.572,
+ 0
+ ],
+ [
+ 1787565600000,
+ 80.27600000000001,
+ 0
+ ],
+ [
+ 1787569200000,
+ 80.114,
+ 0
+ ],
+ [
+ 1787572800000,
+ 78.044,
+ 0
+ ],
+ [
+ 1787576400000,
+ 76.946,
+ 0
+ ],
+ [
+ 1787580000000,
+ 75.434,
+ 0
+ ],
+ [
+ 1787583600000,
+ 75.77600000000001,
+ 0
+ ],
+ [
+ 1787587200000,
+ 77.53999999999999,
+ 0
+ ],
+ [
+ 1787590800000,
+ 80.474,
+ 0
+ ],
+ [
+ 1787594400000,
+ 83.57,
+ 0
+ ],
+ [
+ 1787598000000,
+ 85.712,
+ 0
+ ],
+ [
+ 1787601600000,
+ 85.658,
+ 0
+ ],
+ [
+ 1787605200000,
+ 84.668,
+ 0
+ ],
+ [
+ 1787608800000,
+ 85.064,
+ 0
+ ],
+ [
+ 1787612400000,
+ 85.712,
+ 0
+ ],
+ [
+ 1787616000000,
+ 86.45,
+ 0
+ ],
+ [
+ 1787619600000,
+ 85.334,
+ 0
+ ],
+ [
+ 1787623200000,
+ 82.958,
+ 0
+ ],
+ [
+ 1787626800000,
+ 81.662,
+ 0
+ ],
+ [
+ 1787630400000,
+ 81.78800000000001,
+ 0
+ ],
+ [
+ 1787634000000,
+ 82.02199999999999,
+ 0
+ ],
+ [
+ 1787637600000,
+ 81.266,
+ 0
+ ],
+ [
+ 1787641200000,
+ 78.926,
+ 0
+ ],
+ [
+ 1787644800000,
+ 77.054,
+ 0
+ ],
+ [
+ 1787648400000,
+ 75.92,
+ 0
+ ],
+ [
+ 1787652000000,
+ 74.84,
+ 0
+ ],
+ [
+ 1787655600000,
+ 73.994,
+ 0
+ ],
+ [
+ 1787659200000,
+ 73.202,
+ 0
+ ],
+ [
+ 1787662800000,
+ 73.346,
+ 0
+ ],
+ [
+ 1787666400000,
+ 77.792,
+ 0
+ ],
+ [
+ 1787670000000,
+ 86.18,
+ 0
+ ],
+ [
+ 1787673600000,
+ 90.80600000000001,
+ 0
+ ],
+ [
+ 1787677200000,
+ 92.84,
+ 0
+ ],
+ [
+ 1787680800000,
+ 92.66,
+ 0
+ ],
+ [
+ 1787684400000,
+ 93.93799999999999,
+ 0
+ ],
+ [
+ 1787688000000,
+ 94.80199999999999,
+ 0
+ ],
+ [
+ 1787691600000,
+ 95.324,
+ 0
+ ],
+ [
+ 1787695200000,
+ 97.86200000000001,
+ 0
+ ],
+ [
+ 1787698800000,
+ 99.842,
+ 0
+ ],
+ [
+ 1787702400000,
+ 99.536,
+ 0
+ ],
+ [
+ 1787706000000,
+ 96.746,
+ 0
+ ],
+ [
+ 1787709600000,
+ 92.46200000000002,
+ 0
+ ],
+ [
+ 1787713200000,
+ 89.744,
+ 0
+ ],
+ [
+ 1787716800000,
+ 87.584,
+ 0
+ ],
+ [
+ 1787720400000,
+ 86.43199999999999,
+ 0
+ ],
+ [
+ 1787724000000,
+ 84.09200000000001,
+ 0
+ ],
+ [
+ 1787727600000,
+ 83.462,
+ 0
+ ],
+ [
+ 1787731200000,
+ 86.72,
+ 0
+ ],
+ [
+ 1787734800000,
+ 85.64,
+ 0
+ ],
+ [
+ 1787738400000,
+ 85.19,
+ 0
+ ],
+ [
+ 1787742000000,
+ 81.572,
+ 0
+ ],
+ [
+ 1787745600000,
+ 77.63,
+ 0
+ ],
+ [
+ 1787749200000,
+ 76.208,
+ 0
+ ],
+ [
+ 1787752800000,
+ 82.45400000000001,
+ 0
+ ],
+ [
+ 1787756400000,
+ 86.612,
+ 0
+ ],
+ [
+ 1787760000000,
+ 87.81800000000001,
+ 0
+ ],
+ [
+ 1787763600000,
+ 88.412,
+ 0
+ ],
+ [
+ 1787767200000,
+ 89.384,
+ 0
+ ],
+ [
+ 1787770800000,
+ 89.87,
+ 0
+ ],
+ [
+ 1787774400000,
+ 92.75,
+ 0
+ ],
+ [
+ 1787778000000,
+ 93.398,
+ 0
+ ],
+ [
+ 1787781600000,
+ 94.514,
+ 0
+ ],
+ [
+ 1787785200000,
+ 91.202,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Temp-Air.Inst.1Hour.0.Decodes-Raw.json b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Temp-Air.Inst.1Hour.0.Decodes-Raw.json
index ad874b88e..8f9800d9a 100644
--- a/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Temp-Air.Inst.1Hour.0.Decodes-Raw.json
+++ b/cda-etl/data/sample-data/SWT/Timeseries/EUFA.Temp-Air.Inst.1Hour.0.Decodes-Raw.json
@@ -1,15 +1,15 @@
{
"begin": "2026-06-01T00:00:00+00:00",
"date-version-type": "UNVERSIONED",
- "end": "2026-08-03T15:00:00+00:00",
+ "end": "2026-08-26T23:00:00+00:00",
"interval": "PT1H",
"interval-offset": 0,
"name": "EUFA.Temp-Air.Inst.1Hour.0.Decodes-Raw",
"office-id": "SWT",
- "page": "MTc4MDI3MjAwMDAwMHx8MzM3fHwzMDAwMDA=",
+ "page": "MTc4NzUyOTYwMDAwMHx8NzJ8fDMwMDAwMA==",
"page-size": 300000,
"time-zone": "US/Central",
- "total": 1528,
+ "total": 2088,
"units": "F",
"value-columns": [
{
@@ -7668,6 +7668,2806 @@
1785769200000,
77.396,
0
+ ],
+ [
+ 1785772800000,
+ 81.75200000000001,
+ 0
+ ],
+ [
+ 1785776400000,
+ 85.74799999999999,
+ 0
+ ],
+ [
+ 1785780000000,
+ 87.85400000000001,
+ 0
+ ],
+ [
+ 1785783600000,
+ 89.27600000000001,
+ 0
+ ],
+ [
+ 1785787200000,
+ 90.554,
+ 0
+ ],
+ [
+ 1785790800000,
+ 91.382,
+ 0
+ ],
+ [
+ 1785794400000,
+ 92.19200000000001,
+ 0
+ ],
+ [
+ 1785798000000,
+ 92.55199999999999,
+ 0
+ ],
+ [
+ 1785801600000,
+ 91.67,
+ 0
+ ],
+ [
+ 1785805200000,
+ 89.20400000000001,
+ 0
+ ],
+ [
+ 1785808800000,
+ 85.082,
+ 0
+ ],
+ [
+ 1785812400000,
+ 80.816,
+ 0
+ ],
+ [
+ 1785816000000,
+ 79.646,
+ 0
+ ],
+ [
+ 1785819600000,
+ 78.602,
+ 0
+ ],
+ [
+ 1785823200000,
+ 76.55000000000001,
+ 0
+ ],
+ [
+ 1785826800000,
+ 74.57,
+ 0
+ ],
+ [
+ 1785830400000,
+ 73.814,
+ 0
+ ],
+ [
+ 1785834000000,
+ 73.184,
+ 0
+ ],
+ [
+ 1785837600000,
+ 72.554,
+ 0
+ ],
+ [
+ 1785841200000,
+ 72.14,
+ 0
+ ],
+ [
+ 1785844800000,
+ 71.816,
+ 0
+ ],
+ [
+ 1785848400000,
+ 72.23,
+ 0
+ ],
+ [
+ 1785852000000,
+ 74.588,
+ 0
+ ],
+ [
+ 1785855600000,
+ 79.016,
+ 0
+ ],
+ [
+ 1785859200000,
+ 83.26400000000001,
+ 0
+ ],
+ [
+ 1785862800000,
+ 87.548,
+ 0
+ ],
+ [
+ 1785866400000,
+ 91.544,
+ 0
+ ],
+ [
+ 1785870000000,
+ 94.37,
+ 0
+ ],
+ [
+ 1785873600000,
+ 95.648,
+ 0
+ ],
+ [
+ 1785877200000,
+ 96.584,
+ 0
+ ],
+ [
+ 1785880800000,
+ 96.98,
+ 0
+ ],
+ [
+ 1785884400000,
+ 96.53,
+ 0
+ ],
+ [
+ 1785888000000,
+ 95.342,
+ 0
+ ],
+ [
+ 1785891600000,
+ 92.49799999999999,
+ 0
+ ],
+ [
+ 1785895200000,
+ 88.142,
+ 0
+ ],
+ [
+ 1785898800000,
+ 86.504,
+ 0
+ ],
+ [
+ 1785902400000,
+ 82.52600000000001,
+ 0
+ ],
+ [
+ 1785906000000,
+ 82.958,
+ 0
+ ],
+ [
+ 1785909600000,
+ 81.32,
+ 0
+ ],
+ [
+ 1785913200000,
+ 79.59200000000001,
+ 0
+ ],
+ [
+ 1785916800000,
+ 80.20400000000001,
+ 0
+ ],
+ [
+ 1785920400000,
+ 81.644,
+ 0
+ ],
+ [
+ 1785924000000,
+ 79.80799999999999,
+ 0
+ ],
+ [
+ 1785927600000,
+ 78.29599999999999,
+ 0
+ ],
+ [
+ 1785931200000,
+ 75.542,
+ 0
+ ],
+ [
+ 1785934800000,
+ 75.452,
+ 0
+ ],
+ [
+ 1785938400000,
+ 77.97200000000001,
+ 0
+ ],
+ [
+ 1785942000000,
+ 82.364,
+ 0
+ ],
+ [
+ 1785945600000,
+ 87.08000000000001,
+ 0
+ ],
+ [
+ 1785949200000,
+ 92.372,
+ 0
+ ],
+ [
+ 1785952800000,
+ 94.63999999999999,
+ 0
+ ],
+ [
+ 1785956400000,
+ 96.206,
+ 0
+ ],
+ [
+ 1785960000000,
+ 96.962,
+ 0
+ ],
+ [
+ 1785963600000,
+ 96.602,
+ 0
+ ],
+ [
+ 1785967200000,
+ 98.078,
+ 0
+ ],
+ [
+ 1785970800000,
+ 98.366,
+ 0
+ ],
+ [
+ 1785974400000,
+ 97.898,
+ 0
+ ],
+ [
+ 1785978000000,
+ 94.964,
+ 0
+ ],
+ [
+ 1785981600000,
+ 91.076,
+ 0
+ ],
+ [
+ 1785985200000,
+ 88.53800000000001,
+ 0
+ ],
+ [
+ 1785988800000,
+ 87.494,
+ 0
+ ],
+ [
+ 1785992400000,
+ 81.644,
+ 0
+ ],
+ [
+ 1785996000000,
+ 78.926,
+ 0
+ ],
+ [
+ 1785999600000,
+ 84.30799999999999,
+ 0
+ ],
+ [
+ 1786003200000,
+ 84.128,
+ 0
+ ],
+ [
+ 1786006800000,
+ 84.362,
+ 0
+ ],
+ [
+ 1786010400000,
+ 83.26400000000001,
+ 0
+ ],
+ [
+ 1786014000000,
+ 82.49000000000001,
+ 0
+ ],
+ [
+ 1786017600000,
+ 81.878,
+ 0
+ ],
+ [
+ 1786021200000,
+ 81.78800000000001,
+ 0
+ ],
+ [
+ 1786024800000,
+ 83.678,
+ 0
+ ],
+ [
+ 1786028400000,
+ 87.098,
+ 0
+ ],
+ [
+ 1786032000000,
+ 88.61,
+ 0
+ ],
+ [
+ 1786035600000,
+ 91.274,
+ 0
+ ],
+ [
+ 1786039200000,
+ 92.768,
+ 0
+ ],
+ [
+ 1786042800000,
+ 93.36200000000001,
+ 0
+ ],
+ [
+ 1786046400000,
+ 95.864,
+ 0
+ ],
+ [
+ 1786050000000,
+ 96.602,
+ 0
+ ],
+ [
+ 1786053600000,
+ 97.93400000000001,
+ 0
+ ],
+ [
+ 1786057200000,
+ 97.43,
+ 0
+ ],
+ [
+ 1786060800000,
+ 98.906,
+ 0
+ ],
+ [
+ 1786064400000,
+ 98.06,
+ 0
+ ],
+ [
+ 1786068000000,
+ 92.318,
+ 0
+ ],
+ [
+ 1786071600000,
+ 89.816,
+ 0
+ ],
+ [
+ 1786075200000,
+ 89.042,
+ 0
+ ],
+ [
+ 1786078800000,
+ 86.9,
+ 0
+ ],
+ [
+ 1786082400000,
+ 80.816,
+ 0
+ ],
+ [
+ 1786086000000,
+ 81.554,
+ 0
+ ],
+ [
+ 1786089600000,
+ 81.392,
+ 0
+ ],
+ [
+ 1786093200000,
+ 79.07,
+ 0
+ ],
+ [
+ 1786096800000,
+ 77.774,
+ 0
+ ],
+ [
+ 1786100400000,
+ 76.60400000000001,
+ 0
+ ],
+ [
+ 1786104000000,
+ 75.506,
+ 0
+ ],
+ [
+ 1786107600000,
+ 76.082,
+ 0
+ ],
+ [
+ 1786111200000,
+ 79.73599999999999,
+ 0
+ ],
+ [
+ 1786114800000,
+ 85.532,
+ 0
+ ],
+ [
+ 1786118400000,
+ 87.44,
+ 0
+ ],
+ [
+ 1786122000000,
+ 90.176,
+ 0
+ ],
+ [
+ 1786125600000,
+ 92.94800000000001,
+ 0
+ ],
+ [
+ 1786129200000,
+ 94.47800000000001,
+ 0
+ ],
+ [
+ 1786132800000,
+ 94.80199999999999,
+ 0
+ ],
+ [
+ 1786136400000,
+ 94.172,
+ 0
+ ],
+ [
+ 1786140000000,
+ 87.206,
+ 0
+ ],
+ [
+ 1786143600000,
+ 87.368,
+ 0
+ ],
+ [
+ 1786147200000,
+ 88.268,
+ 0
+ ],
+ [
+ 1786150800000,
+ 86.95400000000001,
+ 0
+ ],
+ [
+ 1786154400000,
+ 84.362,
+ 0
+ ],
+ [
+ 1786158000000,
+ 80.024,
+ 0
+ ],
+ [
+ 1786161600000,
+ 79.43,
+ 0
+ ],
+ [
+ 1786165200000,
+ 78.62,
+ 0
+ ],
+ [
+ 1786168800000,
+ 78.116,
+ 0
+ ],
+ [
+ 1786172400000,
+ 77.19800000000001,
+ 0
+ ],
+ [
+ 1786176000000,
+ 74.84,
+ 0
+ ],
+ [
+ 1786179600000,
+ 73.814,
+ 0
+ ],
+ [
+ 1786183200000,
+ 74.21000000000001,
+ 0
+ ],
+ [
+ 1786186800000,
+ 73.346,
+ 0
+ ],
+ [
+ 1786190400000,
+ 72.392,
+ 0
+ ],
+ [
+ 1786194000000,
+ 72.75200000000001,
+ 0
+ ],
+ [
+ 1786197600000,
+ 75.74000000000001,
+ 0
+ ],
+ [
+ 1786201200000,
+ 79.394,
+ 0
+ ],
+ [
+ 1786204800000,
+ 84.506,
+ 0
+ ],
+ [
+ 1786208400000,
+ 90.77,
+ 0
+ ],
+ [
+ 1786212000000,
+ 91.346,
+ 0
+ ],
+ [
+ 1786215600000,
+ 93.146,
+ 0
+ ],
+ [
+ 1786219200000,
+ 94.334,
+ 0
+ ],
+ [
+ 1786222800000,
+ 95.918,
+ 0
+ ],
+ [
+ 1786226400000,
+ 99.068,
+ 0
+ ],
+ [
+ 1786230000000,
+ 96.62,
+ 0
+ ],
+ [
+ 1786233600000,
+ 95.036,
+ 0
+ ],
+ [
+ 1786237200000,
+ 93.182,
+ 0
+ ],
+ [
+ 1786240800000,
+ 90.482,
+ 0
+ ],
+ [
+ 1786244400000,
+ 87.89,
+ 0
+ ],
+ [
+ 1786248000000,
+ 85.262,
+ 0
+ ],
+ [
+ 1786251600000,
+ 83.282,
+ 0
+ ],
+ [
+ 1786255200000,
+ 81.78800000000001,
+ 0
+ ],
+ [
+ 1786258800000,
+ 81.32,
+ 0
+ ],
+ [
+ 1786262400000,
+ 79.48400000000001,
+ 0
+ ],
+ [
+ 1786266000000,
+ 78.494,
+ 0
+ ],
+ [
+ 1786269600000,
+ 77.414,
+ 0
+ ],
+ [
+ 1786273200000,
+ 76.49600000000001,
+ 0
+ ],
+ [
+ 1786276800000,
+ 75.632,
+ 0
+ ],
+ [
+ 1786280400000,
+ 77.468,
+ 0
+ ],
+ [
+ 1786284000000,
+ 79.34,
+ 0
+ ],
+ [
+ 1786287600000,
+ 83.282,
+ 0
+ ],
+ [
+ 1786291200000,
+ 86.81,
+ 0
+ ],
+ [
+ 1786294800000,
+ 90.428,
+ 0
+ ],
+ [
+ 1786298400000,
+ 93.488,
+ 0
+ ],
+ [
+ 1786302000000,
+ 94.946,
+ 0
+ ],
+ [
+ 1786305600000,
+ 96.71000000000001,
+ 0
+ ],
+ [
+ 1786309200000,
+ 97.394,
+ 0
+ ],
+ [
+ 1786312800000,
+ 97.538,
+ 0
+ ],
+ [
+ 1786316400000,
+ 97.7,
+ 0
+ ],
+ [
+ 1786320000000,
+ 97.574,
+ 0
+ ],
+ [
+ 1786323600000,
+ 95.162,
+ 0
+ ],
+ [
+ 1786327200000,
+ 92.174,
+ 0
+ ],
+ [
+ 1786330800000,
+ 90.356,
+ 0
+ ],
+ [
+ 1786334400000,
+ 88.34,
+ 0
+ ],
+ [
+ 1786338000000,
+ 87.314,
+ 0
+ ],
+ [
+ 1786341600000,
+ 86.30600000000001,
+ 0
+ ],
+ [
+ 1786345200000,
+ 84.938,
+ 0
+ ],
+ [
+ 1786348800000,
+ 83.98400000000001,
+ 0
+ ],
+ [
+ 1786352400000,
+ 83.19200000000001,
+ 0
+ ],
+ [
+ 1786356000000,
+ 82.184,
+ 0
+ ],
+ [
+ 1786359600000,
+ 81.19399999999999,
+ 0
+ ],
+ [
+ 1786363200000,
+ 80.22200000000001,
+ 0
+ ],
+ [
+ 1786366800000,
+ 80.50999999999999,
+ 0
+ ],
+ [
+ 1786370400000,
+ 82.598,
+ 0
+ ],
+ [
+ 1786374000000,
+ 85.46000000000001,
+ 0
+ ],
+ [
+ 1786377600000,
+ 88.16,
+ 0
+ ],
+ [
+ 1786381200000,
+ 91.13,
+ 0
+ ],
+ [
+ 1786384800000,
+ 92.94800000000001,
+ 0
+ ],
+ [
+ 1786388400000,
+ 95.036,
+ 0
+ ],
+ [
+ 1786392000000,
+ 95.126,
+ 0
+ ],
+ [
+ 1786395600000,
+ 96.818,
+ 0
+ ],
+ [
+ 1786399200000,
+ 97.88000000000001,
+ 0
+ ],
+ [
+ 1786402800000,
+ 98.51,
+ 0
+ ],
+ [
+ 1786406400000,
+ 98.438,
+ 0
+ ],
+ [
+ 1786410000000,
+ 95.72,
+ 0
+ ],
+ [
+ 1786413600000,
+ 92.876,
+ 0
+ ],
+ [
+ 1786417200000,
+ 90.08600000000001,
+ 0
+ ],
+ [
+ 1786420800000,
+ 87.94399999999999,
+ 0
+ ],
+ [
+ 1786424400000,
+ 85.838,
+ 0
+ ],
+ [
+ 1786428000000,
+ 83.03,
+ 0
+ ],
+ [
+ 1786431600000,
+ 84.30799999999999,
+ 0
+ ],
+ [
+ 1786435200000,
+ 83.372,
+ 0
+ ],
+ [
+ 1786438800000,
+ 82.634,
+ 0
+ ],
+ [
+ 1786442400000,
+ 82.4,
+ 0
+ ],
+ [
+ 1786446000000,
+ 81.356,
+ 0
+ ],
+ [
+ 1786449600000,
+ 80.50999999999999,
+ 0
+ ],
+ [
+ 1786453200000,
+ 80.132,
+ 0
+ ],
+ [
+ 1786456800000,
+ 82.49000000000001,
+ 0
+ ],
+ [
+ 1786460400000,
+ 85.78399999999999,
+ 0
+ ],
+ [
+ 1786464000000,
+ 88.826,
+ 0
+ ],
+ [
+ 1786467600000,
+ 91.274,
+ 0
+ ],
+ [
+ 1786471200000,
+ 93.00200000000001,
+ 0
+ ],
+ [
+ 1786474800000,
+ 95.288,
+ 0
+ ],
+ [
+ 1786478400000,
+ 96.098,
+ 0
+ ],
+ [
+ 1786482000000,
+ 97.538,
+ 0
+ ],
+ [
+ 1786485600000,
+ 98.186,
+ 0
+ ],
+ [
+ 1786489200000,
+ 98.024,
+ 0
+ ],
+ [
+ 1786492800000,
+ 98.15,
+ 0
+ ],
+ [
+ 1786496400000,
+ 96.116,
+ 0
+ ],
+ [
+ 1786500000000,
+ 93.28999999999999,
+ 0
+ ],
+ [
+ 1786503600000,
+ 90.86000000000001,
+ 0
+ ],
+ [
+ 1786507200000,
+ 89.024,
+ 0
+ ],
+ [
+ 1786510800000,
+ 87.602,
+ 0
+ ],
+ [
+ 1786514400000,
+ 86.756,
+ 0
+ ],
+ [
+ 1786518000000,
+ 86.55799999999999,
+ 0
+ ],
+ [
+ 1786521600000,
+ 85.82,
+ 0
+ ],
+ [
+ 1786525200000,
+ 84.92,
+ 0
+ ],
+ [
+ 1786528800000,
+ 84.434,
+ 0
+ ],
+ [
+ 1786532400000,
+ 83.732,
+ 0
+ ],
+ [
+ 1786536000000,
+ 83.48,
+ 0
+ ],
+ [
+ 1786539600000,
+ 82.922,
+ 0
+ ],
+ [
+ 1786543200000,
+ 84.72200000000001,
+ 0
+ ],
+ [
+ 1786546800000,
+ 86.882,
+ 0
+ ],
+ [
+ 1786550400000,
+ 89.366,
+ 0
+ ],
+ [
+ 1786554000000,
+ 91.868,
+ 0
+ ],
+ [
+ 1786557600000,
+ 94.55000000000001,
+ 0
+ ],
+ [
+ 1786561200000,
+ 95.99,
+ 0
+ ],
+ [
+ 1786564800000,
+ 97.664,
+ 0
+ ],
+ [
+ 1786568400000,
+ 99.014,
+ 0
+ ],
+ [
+ 1786572000000,
+ 99.248,
+ 0
+ ],
+ [
+ 1786575600000,
+ 99.14,
+ 0
+ ],
+ [
+ 1786579200000,
+ 99.08600000000001,
+ 0
+ ],
+ [
+ 1786582800000,
+ 97.214,
+ 0
+ ],
+ [
+ 1786586400000,
+ 94.316,
+ 0
+ ],
+ [
+ 1786590000000,
+ 91.976,
+ 0
+ ],
+ [
+ 1786593600000,
+ 89.384,
+ 0
+ ],
+ [
+ 1786597200000,
+ 87.836,
+ 0
+ ],
+ [
+ 1786600800000,
+ 87.368,
+ 0
+ ],
+ [
+ 1786604400000,
+ 88.16,
+ 0
+ ],
+ [
+ 1786608000000,
+ 87.368,
+ 0
+ ],
+ [
+ 1786611600000,
+ 86.53999999999999,
+ 0
+ ],
+ [
+ 1786615200000,
+ 85.892,
+ 0
+ ],
+ [
+ 1786618800000,
+ 85.226,
+ 0
+ ],
+ [
+ 1786622400000,
+ 84.686,
+ 0
+ ],
+ [
+ 1786626000000,
+ 85.064,
+ 0
+ ],
+ [
+ 1786629600000,
+ 87.098,
+ 0
+ ],
+ [
+ 1786633200000,
+ 88.916,
+ 0
+ ],
+ [
+ 1786636800000,
+ 91.56200000000001,
+ 0
+ ],
+ [
+ 1786640400000,
+ 93.686,
+ 0
+ ],
+ [
+ 1786644000000,
+ 95.738,
+ 0
+ ],
+ [
+ 1786647600000,
+ 97.376,
+ 0
+ ],
+ [
+ 1786651200000,
+ 99.068,
+ 0
+ ],
+ [
+ 1786654800000,
+ 99.914,
+ 0
+ ],
+ [
+ 1786658400000,
+ 100.56200000000001,
+ 0
+ ],
+ [
+ 1786662000000,
+ 99.842,
+ 0
+ ],
+ [
+ 1786665600000,
+ 99.212,
+ 0
+ ],
+ [
+ 1786669200000,
+ 97.43,
+ 0
+ ],
+ [
+ 1786672800000,
+ 94.316,
+ 0
+ ],
+ [
+ 1786676400000,
+ 92.102,
+ 0
+ ],
+ [
+ 1786680000000,
+ 90.69800000000001,
+ 0
+ ],
+ [
+ 1786683600000,
+ 88.34,
+ 0
+ ],
+ [
+ 1786687200000,
+ 86.144,
+ 0
+ ],
+ [
+ 1786690800000,
+ 86.378,
+ 0
+ ],
+ [
+ 1786694400000,
+ 85.712,
+ 0
+ ],
+ [
+ 1786698000000,
+ 85.712,
+ 0
+ ],
+ [
+ 1786701600000,
+ 85.19,
+ 0
+ ],
+ [
+ 1786705200000,
+ 85.172,
+ 0
+ ],
+ [
+ 1786708800000,
+ 84.074,
+ 0
+ ],
+ [
+ 1786712400000,
+ 83.426,
+ 0
+ ],
+ [
+ 1786716000000,
+ 85.60400000000001,
+ 0
+ ],
+ [
+ 1786719600000,
+ 87.782,
+ 0
+ ],
+ [
+ 1786723200000,
+ 89.528,
+ 0
+ ],
+ [
+ 1786726800000,
+ 92.12,
+ 0
+ ],
+ [
+ 1786730400000,
+ 94.388,
+ 0
+ ],
+ [
+ 1786734000000,
+ 96.26,
+ 0
+ ],
+ [
+ 1786737600000,
+ 98.20400000000001,
+ 0
+ ],
+ [
+ 1786741200000,
+ 99.73400000000001,
+ 0
+ ],
+ [
+ 1786744800000,
+ 100.13000000000001,
+ 0
+ ],
+ [
+ 1786748400000,
+ 99.932,
+ 0
+ ],
+ [
+ 1786752000000,
+ 98.996,
+ 0
+ ],
+ [
+ 1786755600000,
+ 97.07,
+ 0
+ ],
+ [
+ 1786759200000,
+ 94.01,
+ 0
+ ],
+ [
+ 1786762800000,
+ 91.544,
+ 0
+ ],
+ [
+ 1786766400000,
+ 87.566,
+ 0
+ ],
+ [
+ 1786770000000,
+ 83.31800000000001,
+ 0
+ ],
+ [
+ 1786773600000,
+ 81.23,
+ 0
+ ],
+ [
+ 1786777200000,
+ 82.652,
+ 0
+ ],
+ [
+ 1786780800000,
+ 81.98599999999999,
+ 0
+ ],
+ [
+ 1786784400000,
+ 83.94800000000001,
+ 0
+ ],
+ [
+ 1786788000000,
+ 82.832,
+ 0
+ ],
+ [
+ 1786791600000,
+ 80.78,
+ 0
+ ],
+ [
+ 1786795200000,
+ 80.564,
+ 0
+ ],
+ [
+ 1786798800000,
+ 81.14,
+ 0
+ ],
+ [
+ 1786802400000,
+ 84.416,
+ 0
+ ],
+ [
+ 1786806000000,
+ 87.656,
+ 0
+ ],
+ [
+ 1786809600000,
+ 90.08600000000001,
+ 0
+ ],
+ [
+ 1786813200000,
+ 92.624,
+ 0
+ ],
+ [
+ 1786816800000,
+ 94.82,
+ 0
+ ],
+ [
+ 1786820400000,
+ 96.314,
+ 0
+ ],
+ [
+ 1786824000000,
+ 97.898,
+ 0
+ ],
+ [
+ 1786827600000,
+ 99.23,
+ 0
+ ],
+ [
+ 1786831200000,
+ 98.87,
+ 0
+ ],
+ [
+ 1786834800000,
+ 98.76200000000001,
+ 0
+ ],
+ [
+ 1786838400000,
+ 98.942,
+ 0
+ ],
+ [
+ 1786842000000,
+ 97.304,
+ 0
+ ],
+ [
+ 1786845600000,
+ 94.47800000000001,
+ 0
+ ],
+ [
+ 1786849200000,
+ 92.156,
+ 0
+ ],
+ [
+ 1786852800000,
+ 90.536,
+ 0
+ ],
+ [
+ 1786856400000,
+ 88.916,
+ 0
+ ],
+ [
+ 1786860000000,
+ 86.99000000000001,
+ 0
+ ],
+ [
+ 1786863600000,
+ 86.99000000000001,
+ 0
+ ],
+ [
+ 1786867200000,
+ 86.9,
+ 0
+ ],
+ [
+ 1786870800000,
+ 86.396,
+ 0
+ ],
+ [
+ 1786874400000,
+ 85.838,
+ 0
+ ],
+ [
+ 1786878000000,
+ 86.19800000000001,
+ 0
+ ],
+ [
+ 1786881600000,
+ 86.27,
+ 0
+ ],
+ [
+ 1786885200000,
+ 86.43199999999999,
+ 0
+ ],
+ [
+ 1786888800000,
+ 87.656,
+ 0
+ ],
+ [
+ 1786892400000,
+ 89.582,
+ 0
+ ],
+ [
+ 1786896000000,
+ 91.68799999999999,
+ 0
+ ],
+ [
+ 1786899600000,
+ 93.65,
+ 0
+ ],
+ [
+ 1786903200000,
+ 95.684,
+ 0
+ ],
+ [
+ 1786906800000,
+ 97.592,
+ 0
+ ],
+ [
+ 1786910400000,
+ 99.41000000000001,
+ 0
+ ],
+ [
+ 1786914000000,
+ 99.284,
+ 0
+ ],
+ [
+ 1786917600000,
+ 100.148,
+ 0
+ ],
+ [
+ 1786921200000,
+ 100.166,
+ 0
+ ],
+ [
+ 1786924800000,
+ 101.444,
+ 0
+ ],
+ [
+ 1786928400000,
+ 100.274,
+ 0
+ ],
+ [
+ 1786932000000,
+ 97.394,
+ 0
+ ],
+ [
+ 1786935600000,
+ 94.928,
+ 0
+ ],
+ [
+ 1786939200000,
+ 92.84,
+ 0
+ ],
+ [
+ 1786942800000,
+ 90.95,
+ 0
+ ],
+ [
+ 1786946400000,
+ 90.716,
+ 0
+ ],
+ [
+ 1786950000000,
+ 89.834,
+ 0
+ ],
+ [
+ 1786953600000,
+ 87.782,
+ 0
+ ],
+ [
+ 1786957200000,
+ 85.51400000000001,
+ 0
+ ],
+ [
+ 1786960800000,
+ 82.724,
+ 0
+ ],
+ [
+ 1786964400000,
+ 81.356,
+ 0
+ ],
+ [
+ 1786968000000,
+ 79.952,
+ 0
+ ],
+ [
+ 1786971600000,
+ 78.872,
+ 0
+ ],
+ [
+ 1786975200000,
+ 82.868,
+ 0
+ ],
+ [
+ 1786978800000,
+ 82.52600000000001,
+ 0
+ ],
+ [
+ 1786982400000,
+ 79.826,
+ 0
+ ],
+ [
+ 1786986000000,
+ 86.34200000000001,
+ 0
+ ],
+ [
+ 1786989600000,
+ 89.42,
+ 0
+ ],
+ [
+ 1786993200000,
+ 91.13,
+ 0
+ ],
+ [
+ 1786996800000,
+ 88.898,
+ 0
+ ],
+ [
+ 1787000400000,
+ 87.566,
+ 0
+ ],
+ [
+ 1787004000000,
+ 93.074,
+ 0
+ ],
+ [
+ 1787007600000,
+ 92.40800000000002,
+ 0
+ ],
+ [
+ 1787011200000,
+ 89.42,
+ 0
+ ],
+ [
+ 1787014800000,
+ 87.89,
+ 0
+ ],
+ [
+ 1787018400000,
+ 85.28,
+ 0
+ ],
+ [
+ 1787022000000,
+ 83.21000000000001,
+ 0
+ ],
+ [
+ 1787025600000,
+ 81.122,
+ 0
+ ],
+ [
+ 1787029200000,
+ 81.212,
+ 0
+ ],
+ [
+ 1787032800000,
+ 80.06,
+ 0
+ ],
+ [
+ 1787036400000,
+ 79.646,
+ 0
+ ],
+ [
+ 1787040000000,
+ 78.116,
+ 0
+ ],
+ [
+ 1787043600000,
+ 77.072,
+ 0
+ ],
+ [
+ 1787047200000,
+ 75.938,
+ 0
+ ],
+ [
+ 1787050800000,
+ 75.398,
+ 0
+ ],
+ [
+ 1787054400000,
+ 74.696,
+ 0
+ ],
+ [
+ 1787058000000,
+ 75.254,
+ 0
+ ],
+ [
+ 1787061600000,
+ 77.81,
+ 0
+ ],
+ [
+ 1787065200000,
+ 81.93199999999999,
+ 0
+ ],
+ [
+ 1787068800000,
+ 87.69200000000001,
+ 0
+ ],
+ [
+ 1787072400000,
+ 94.208,
+ 0
+ ],
+ [
+ 1787076000000,
+ 94.622,
+ 0
+ ],
+ [
+ 1787079600000,
+ 98.474,
+ 0
+ ],
+ [
+ 1787083200000,
+ 100.724,
+ 0
+ ],
+ [
+ 1787086800000,
+ 101.03,
+ 0
+ ],
+ [
+ 1787090400000,
+ 103.244,
+ 0
+ ],
+ [
+ 1787094000000,
+ 103.58600000000001,
+ 0
+ ],
+ [
+ 1787097600000,
+ 102.884,
+ 0
+ ],
+ [
+ 1787101200000,
+ 103.85600000000001,
+ 0
+ ],
+ [
+ 1787104800000,
+ 98.924,
+ 0
+ ],
+ [
+ 1787108400000,
+ 95.774,
+ 0
+ ],
+ [
+ 1787112000000,
+ 94.208,
+ 0
+ ],
+ [
+ 1787115600000,
+ 92.642,
+ 0
+ ],
+ [
+ 1787119200000,
+ 91.52600000000001,
+ 0
+ ],
+ [
+ 1787122800000,
+ 91.364,
+ 0
+ ],
+ [
+ 1787126400000,
+ 90.96799999999999,
+ 0
+ ],
+ [
+ 1787130000000,
+ 88.826,
+ 0
+ ],
+ [
+ 1787133600000,
+ 88.16,
+ 0
+ ],
+ [
+ 1787137200000,
+ 88.196,
+ 0
+ ],
+ [
+ 1787140800000,
+ 86.95400000000001,
+ 0
+ ],
+ [
+ 1787144400000,
+ 87.656,
+ 0
+ ],
+ [
+ 1787148000000,
+ 89.69,
+ 0
+ ],
+ [
+ 1787151600000,
+ 92.588,
+ 0
+ ],
+ [
+ 1787155200000,
+ 95.936,
+ 0
+ ],
+ [
+ 1787158800000,
+ 99.35600000000001,
+ 0
+ ],
+ [
+ 1787162400000,
+ 98.186,
+ 0
+ ],
+ [
+ 1787166000000,
+ 98.63600000000001,
+ 0
+ ],
+ [
+ 1787169600000,
+ 99.716,
+ 0
+ ],
+ [
+ 1787173200000,
+ 101.822,
+ 0
+ ],
+ [
+ 1787176800000,
+ 103.568,
+ 0
+ ],
+ [
+ 1787180400000,
+ 103.676,
+ 0
+ ],
+ [
+ 1787184000000,
+ 105.314,
+ 0
+ ],
+ [
+ 1787187600000,
+ 102.902,
+ 0
+ ],
+ [
+ 1787191200000,
+ 100.472,
+ 0
+ ],
+ [
+ 1787194800000,
+ 98.366,
+ 0
+ ],
+ [
+ 1787198400000,
+ 94.58600000000001,
+ 0
+ ],
+ [
+ 1787202000000,
+ 95.144,
+ 0
+ ],
+ [
+ 1787205600000,
+ 92.822,
+ 0
+ ],
+ [
+ 1787209200000,
+ 91.13,
+ 0
+ ],
+ [
+ 1787212800000,
+ 87.638,
+ 0
+ ],
+ [
+ 1787216400000,
+ 87.94399999999999,
+ 0
+ ],
+ [
+ 1787220000000,
+ 87.62,
+ 0
+ ],
+ [
+ 1787223600000,
+ 86.126,
+ 0
+ ],
+ [
+ 1787227200000,
+ 85.64,
+ 0
+ ],
+ [
+ 1787230800000,
+ 82.508,
+ 0
+ ],
+ [
+ 1787234400000,
+ 83.282,
+ 0
+ ],
+ [
+ 1787238000000,
+ 85.118,
+ 0
+ ],
+ [
+ 1787241600000,
+ 88.268,
+ 0
+ ],
+ [
+ 1787245200000,
+ 90.77,
+ 0
+ ],
+ [
+ 1787248800000,
+ 91.74199999999999,
+ 0
+ ],
+ [
+ 1787252400000,
+ 93.38,
+ 0
+ ],
+ [
+ 1787256000000,
+ 95.53999999999999,
+ 0
+ ],
+ [
+ 1787259600000,
+ 98.006,
+ 0
+ ],
+ [
+ 1787263200000,
+ 98.402,
+ 0
+ ],
+ [
+ 1787266800000,
+ 101.12,
+ 0
+ ],
+ [
+ 1787270400000,
+ 102.47,
+ 0
+ ],
+ [
+ 1787274000000,
+ 101.444,
+ 0
+ ],
+ [
+ 1787277600000,
+ 97.232,
+ 0
+ ],
+ [
+ 1787281200000,
+ 94.13600000000001,
+ 0
+ ],
+ [
+ 1787284800000,
+ 91.814,
+ 0
+ ],
+ [
+ 1787288400000,
+ 90.10400000000001,
+ 0
+ ],
+ [
+ 1787292000000,
+ 87.71000000000001,
+ 0
+ ],
+ [
+ 1787295600000,
+ 86.828,
+ 0
+ ],
+ [
+ 1787299200000,
+ 85.91,
+ 0
+ ],
+ [
+ 1787302800000,
+ 85.56800000000001,
+ 0
+ ],
+ [
+ 1787306400000,
+ 83.84,
+ 0
+ ],
+ [
+ 1787310000000,
+ 82.418,
+ 0
+ ],
+ [
+ 1787313600000,
+ 79.574,
+ 0
+ ],
+ [
+ 1787317200000,
+ 75.416,
+ 0
+ ],
+ [
+ 1787320800000,
+ 77.48599999999999,
+ 0
+ ],
+ [
+ 1787324400000,
+ 77.45,
+ 0
+ ],
+ [
+ 1787328000000,
+ 79.16,
+ 0
+ ],
+ [
+ 1787331600000,
+ 81.80600000000001,
+ 0
+ ],
+ [
+ 1787335200000,
+ 85.69399999999999,
+ 0
+ ],
+ [
+ 1787338800000,
+ 87.89,
+ 0
+ ],
+ [
+ 1787342400000,
+ 90.608,
+ 0
+ ],
+ [
+ 1787346000000,
+ 95.72,
+ 0
+ ],
+ [
+ 1787349600000,
+ 97.574,
+ 0
+ ],
+ [
+ 1787353200000,
+ 97.304,
+ 0
+ ],
+ [
+ 1787356800000,
+ 96.62,
+ 0
+ ],
+ [
+ 1787360400000,
+ 97.412,
+ 0
+ ],
+ [
+ 1787364000000,
+ 91.52600000000001,
+ 0
+ ],
+ [
+ 1787367600000,
+ 90.356,
+ 0
+ ],
+ [
+ 1787371200000,
+ 87.512,
+ 0
+ ],
+ [
+ 1787374800000,
+ 87.656,
+ 0
+ ],
+ [
+ 1787378400000,
+ 86.918,
+ 0
+ ],
+ [
+ 1787382000000,
+ 86.144,
+ 0
+ ],
+ [
+ 1787385600000,
+ 81.032,
+ 0
+ ],
+ [
+ 1787389200000,
+ 76.622,
+ 0
+ ],
+ [
+ 1787392800000,
+ 75.614,
+ 0
+ ],
+ [
+ 1787396400000,
+ 75.164,
+ 0
+ ],
+ [
+ 1787400000000,
+ 74.012,
+ 0
+ ],
+ [
+ 1787403600000,
+ 74.35400000000001,
+ 0
+ ],
+ [
+ 1787407200000,
+ 79.34,
+ 0
+ ],
+ [
+ 1787410800000,
+ 85.424,
+ 0
+ ],
+ [
+ 1787414400000,
+ 87.44,
+ 0
+ ],
+ [
+ 1787418000000,
+ 85.838,
+ 0
+ ],
+ [
+ 1787421600000,
+ 85.37,
+ 0
+ ],
+ [
+ 1787425200000,
+ 85.424,
+ 0
+ ],
+ [
+ 1787428800000,
+ 86.666,
+ 0
+ ],
+ [
+ 1787432400000,
+ 90.932,
+ 0
+ ],
+ [
+ 1787436000000,
+ 92.786,
+ 0
+ ],
+ [
+ 1787439600000,
+ 90.644,
+ 0
+ ],
+ [
+ 1787443200000,
+ 90.536,
+ 0
+ ],
+ [
+ 1787446800000,
+ 89.348,
+ 0
+ ],
+ [
+ 1787450400000,
+ 86.23400000000001,
+ 0
+ ],
+ [
+ 1787454000000,
+ 82.166,
+ 0
+ ],
+ [
+ 1787457600000,
+ 80.834,
+ 0
+ ],
+ [
+ 1787461200000,
+ 79.934,
+ 0
+ ],
+ [
+ 1787464800000,
+ 80.258,
+ 0
+ ],
+ [
+ 1787468400000,
+ 78.29599999999999,
+ 0
+ ],
+ [
+ 1787472000000,
+ 77.396,
+ 0
+ ],
+ [
+ 1787475600000,
+ 76.1,
+ 0
+ ],
+ [
+ 1787479200000,
+ 74.786,
+ 0
+ ],
+ [
+ 1787482800000,
+ 74.19200000000001,
+ 0
+ ],
+ [
+ 1787486400000,
+ 72.75200000000001,
+ 0
+ ],
+ [
+ 1787490000000,
+ 72.80600000000001,
+ 0
+ ],
+ [
+ 1787493600000,
+ 74.804,
+ 0
+ ],
+ [
+ 1787497200000,
+ 78.72800000000001,
+ 0
+ ],
+ [
+ 1787500800000,
+ 82.562,
+ 0
+ ],
+ [
+ 1787504400000,
+ 86.126,
+ 0
+ ],
+ [
+ 1787508000000,
+ 88.73599999999999,
+ 0
+ ],
+ [
+ 1787511600000,
+ 91.88600000000001,
+ 0
+ ],
+ [
+ 1787515200000,
+ 94.352,
+ 0
+ ],
+ [
+ 1787518800000,
+ 95.648,
+ 0
+ ],
+ [
+ 1787522400000,
+ 96.116,
+ 0
+ ],
+ [
+ 1787526000000,
+ 96.674,
+ 0
+ ],
+ [
+ 1787529600000,
+ 96.71000000000001,
+ 0
+ ],
+ [
+ 1787533200000,
+ 94.01,
+ 0
+ ],
+ [
+ 1787536800000,
+ 90.21200000000002,
+ 0
+ ],
+ [
+ 1787540400000,
+ 86.738,
+ 0
+ ],
+ [
+ 1787544000000,
+ 85.69399999999999,
+ 0
+ ],
+ [
+ 1787547600000,
+ 86.0,
+ 0
+ ],
+ [
+ 1787551200000,
+ 84.398,
+ 0
+ ],
+ [
+ 1787554800000,
+ 84.09200000000001,
+ 0
+ ],
+ [
+ 1787558400000,
+ 82.724,
+ 0
+ ],
+ [
+ 1787562000000,
+ 81.572,
+ 0
+ ],
+ [
+ 1787565600000,
+ 80.27600000000001,
+ 0
+ ],
+ [
+ 1787569200000,
+ 80.114,
+ 0
+ ],
+ [
+ 1787572800000,
+ 78.044,
+ 0
+ ],
+ [
+ 1787576400000,
+ 76.946,
+ 0
+ ],
+ [
+ 1787580000000,
+ 75.434,
+ 0
+ ],
+ [
+ 1787583600000,
+ 75.77600000000001,
+ 0
+ ],
+ [
+ 1787587200000,
+ 77.53999999999999,
+ 0
+ ],
+ [
+ 1787590800000,
+ 80.474,
+ 0
+ ],
+ [
+ 1787594400000,
+ 83.57,
+ 0
+ ],
+ [
+ 1787598000000,
+ 85.712,
+ 0
+ ],
+ [
+ 1787601600000,
+ 85.658,
+ 0
+ ],
+ [
+ 1787605200000,
+ 84.668,
+ 0
+ ],
+ [
+ 1787608800000,
+ 85.064,
+ 0
+ ],
+ [
+ 1787612400000,
+ 85.712,
+ 0
+ ],
+ [
+ 1787616000000,
+ 86.45,
+ 0
+ ],
+ [
+ 1787619600000,
+ 85.334,
+ 0
+ ],
+ [
+ 1787623200000,
+ 82.958,
+ 0
+ ],
+ [
+ 1787626800000,
+ 81.662,
+ 0
+ ],
+ [
+ 1787630400000,
+ 81.78800000000001,
+ 0
+ ],
+ [
+ 1787634000000,
+ 82.02199999999999,
+ 0
+ ],
+ [
+ 1787637600000,
+ 81.266,
+ 0
+ ],
+ [
+ 1787641200000,
+ 78.926,
+ 0
+ ],
+ [
+ 1787644800000,
+ 77.054,
+ 0
+ ],
+ [
+ 1787648400000,
+ 75.92,
+ 0
+ ],
+ [
+ 1787652000000,
+ 74.84,
+ 0
+ ],
+ [
+ 1787655600000,
+ 73.994,
+ 0
+ ],
+ [
+ 1787659200000,
+ 73.202,
+ 0
+ ],
+ [
+ 1787662800000,
+ 73.346,
+ 0
+ ],
+ [
+ 1787666400000,
+ 77.792,
+ 0
+ ],
+ [
+ 1787670000000,
+ 86.18,
+ 0
+ ],
+ [
+ 1787673600000,
+ 90.80600000000001,
+ 0
+ ],
+ [
+ 1787677200000,
+ 92.84,
+ 0
+ ],
+ [
+ 1787680800000,
+ 92.66,
+ 0
+ ],
+ [
+ 1787684400000,
+ 93.93799999999999,
+ 0
+ ],
+ [
+ 1787688000000,
+ 94.80199999999999,
+ 0
+ ],
+ [
+ 1787691600000,
+ 95.324,
+ 0
+ ],
+ [
+ 1787695200000,
+ 97.86200000000001,
+ 0
+ ],
+ [
+ 1787698800000,
+ 99.842,
+ 0
+ ],
+ [
+ 1787702400000,
+ 99.536,
+ 0
+ ],
+ [
+ 1787706000000,
+ 96.746,
+ 0
+ ],
+ [
+ 1787709600000,
+ 92.46200000000002,
+ 0
+ ],
+ [
+ 1787713200000,
+ 89.744,
+ 0
+ ],
+ [
+ 1787716800000,
+ 87.584,
+ 0
+ ],
+ [
+ 1787720400000,
+ 86.43199999999999,
+ 0
+ ],
+ [
+ 1787724000000,
+ 84.09200000000001,
+ 0
+ ],
+ [
+ 1787727600000,
+ 83.462,
+ 0
+ ],
+ [
+ 1787731200000,
+ 86.72,
+ 0
+ ],
+ [
+ 1787734800000,
+ 85.64,
+ 0
+ ],
+ [
+ 1787738400000,
+ 85.19,
+ 0
+ ],
+ [
+ 1787742000000,
+ 81.572,
+ 0
+ ],
+ [
+ 1787745600000,
+ 77.63,
+ 0
+ ],
+ [
+ 1787749200000,
+ 76.208,
+ 0
+ ],
+ [
+ 1787752800000,
+ 82.45400000000001,
+ 0
+ ],
+ [
+ 1787756400000,
+ 86.612,
+ 0
+ ],
+ [
+ 1787760000000,
+ 87.81800000000001,
+ 0
+ ],
+ [
+ 1787763600000,
+ 88.412,
+ 0
+ ],
+ [
+ 1787767200000,
+ 89.384,
+ 0
+ ],
+ [
+ 1787770800000,
+ 89.87,
+ 0
+ ],
+ [
+ 1787774400000,
+ 92.75,
+ 0
+ ],
+ [
+ 1787778000000,
+ 93.398,
+ 0
+ ],
+ [
+ 1787781600000,
+ 94.514,
+ 0
+ ],
+ [
+ 1787785200000,
+ 91.202,
+ 0
]
]
}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/TurbineChanges/EUFA.json b/cda-etl/data/sample-data/SWT/TurbineChanges/EUFA.json
new file mode 100644
index 000000000..d4c06a882
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/TurbineChanges/EUFA.json
@@ -0,0 +1,34002 @@
+[
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780272000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7236.000000000001,
+ "old-total-discharge-override": 7479.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.34,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3400.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3836.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.9099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780275600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 229.00000000000003,
+ "old-total-discharge-override": 7236.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.59,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3400.0000000000005,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3836.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780279200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 229.00000000000003,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780282800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.8299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.92
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780286400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 454.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.18,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780290000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7182.000000000001,
+ "old-total-discharge-override": 454.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3375.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3807.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780293600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7479.0,
+ "old-total-discharge-override": 7182.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3375.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3807.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.9099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780297200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7479.0,
+ "old-total-discharge-override": 7479.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.23,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.9099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780300800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7479.0,
+ "old-total-discharge-override": 7479.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.3299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.9099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780304400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7479.0,
+ "old-total-discharge-override": 7479.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.34,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.9099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780308000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7479.0,
+ "old-total-discharge-override": 7479.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.31999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.9099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780311600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7638.0,
+ "old-total-discharge-override": 7479.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3625.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.9099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780315200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7678.000000000001,
+ "old-total-discharge-override": 7638.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3625.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4153.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.9099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780318800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7638.0,
+ "old-total-discharge-override": 7678.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3625.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4153.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.89
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780322400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7638.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3625.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780326000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7678.000000000001,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.43,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4153.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780329600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7678.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4153.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780333200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7638.0,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3625.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780336800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7678.000000000001,
+ "old-total-discharge-override": 7638.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3625.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4153.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780340400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7678.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4153.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780344000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.39,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780347600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7678.000000000001,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.43,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4153.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780351200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7678.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.41,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4153.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780354800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7678.000000000001,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4153.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780358400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7438.000000000001,
+ "old-total-discharge-override": 7678.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.3999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3425.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4153.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780362000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7438.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.36,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3425.0,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780365600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.41999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780369200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.35,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780372800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7438.000000000001,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.49999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3425.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780376400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 7438.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3425.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780380000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780383600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.85,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780387200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.36999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780390800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.0199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780394400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.7799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.79
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780398000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780401600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.83
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780405200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780408800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780412400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.79
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780416000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.41,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780419600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 454.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.53999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 454.0,
+ "new-discharge": 454.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 2.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780423200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 4144.0,
+ "old-total-discharge-override": 454.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.85,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 454.0,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.79
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780426800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7479.0,
+ "old-total-discharge-override": 4144.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.31,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.79
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780430400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7479.0,
+ "old-total-discharge-override": 7479.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.96999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.79
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780434000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7479.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.31,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.79
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780437600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.76
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780441200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.38,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.76
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780444800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.79
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780448400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.53999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780452000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.85,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780455600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.79
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780459200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.24,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780462800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.73
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780466400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.09999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.79
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780470000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.99,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780473600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.81999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780477200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.68,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780480800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.56999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780484400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780488000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.83
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780491600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780495200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.43,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780498800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.43,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780502400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.41999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780506000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.41,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780509600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.41,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780513200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.3999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780516800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 227.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.34,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780520400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3450.0,
+ "old-total-discharge-override": 227.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.56999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3450.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.83
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780524000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3450.0,
+ "old-total-discharge-override": 3450.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.91999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3450.0,
+ "new-discharge": 3450.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780527600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3350.0000000000005,
+ "old-total-discharge-override": 3450.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.2699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3450.0,
+ "new-discharge": 3350.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780531200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 3350.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.2799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3350.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780534800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.83
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780538400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.21999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780542000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.91999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780545600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.71999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780549200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.59999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780552800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.5199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780556400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780560000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780563600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780567200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.41999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780570800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.41,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780574400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.41,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780578000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.3999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780581600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780585200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780588800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780592400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 1141.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.7699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 1141.0,
+ "new-discharge": 1141.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 5.0
+ }
+ ],
+ "pool-elevation": 585.8799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780596000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 1141.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.7799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 1141.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780599600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.59999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780603200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.53999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780606800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780610400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780614000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780617600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780621200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780624800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780628400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780632000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780635600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780639200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780642800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780646400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780650000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780653600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 1362.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 454.0,
+ "new-discharge": 454.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 2.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 454.0,
+ "new-discharge": 454.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 2.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 454.0,
+ "new-discharge": 454.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 2.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780657200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11072.000000000002,
+ "old-total-discharge-override": 1362.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.7699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 454.0,
+ "new-discharge": 3400.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 454.0,
+ "new-discharge": 3836.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 454.0,
+ "new-discharge": 3836.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 585.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780660800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11404.0,
+ "old-total-discharge-override": 11072.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.06999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3400.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3836.0000000000005,
+ "new-discharge": 3866.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3836.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.83
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780664400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11157.0,
+ "old-total-discharge-override": 11404.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.24999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3425.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3866.0000000000005,
+ "new-discharge": 3866.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 3866.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 585.83
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780668000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11636.0,
+ "old-total-discharge-override": 11157.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3425.0,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3866.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3866.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.8199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780671600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11636.0,
+ "old-total-discharge-override": 11636.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780675200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11636.0,
+ "old-total-discharge-override": 11636.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780678800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11588.000000000002,
+ "old-total-discharge-override": 11636.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.68,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3650.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 3895.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 585.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780682400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11636.0,
+ "old-total-discharge-override": 11588.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.5799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3650.0,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3895.0,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780686000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11782.0,
+ "old-total-discharge-override": 11636.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.66,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4189.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.76
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780689600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11636.0,
+ "old-total-discharge-override": 11782.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4189.0,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.74
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780693200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11636.0,
+ "old-total-discharge-override": 11636.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.73
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780696800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11636.0,
+ "old-total-discharge-override": 11636.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.73
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780700400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11636.0,
+ "old-total-discharge-override": 11636.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.69,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.71
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780704000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11636.0,
+ "old-total-discharge-override": 11636.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.5799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.71
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780707600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11636.0,
+ "old-total-discharge-override": 11636.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.71
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780711200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11488.000000000002,
+ "old-total-discharge-override": 11636.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.59,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 3550.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 3895.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 585.69
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780714800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 458.00000000000006,
+ "old-total-discharge-override": 11488.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.1499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3550.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3895.0,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 585.6999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780718400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 458.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.6999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780722000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.11,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.69
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780725600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.6999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780729200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.16999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.6999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780732800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.8999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.68
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780736400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.73,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.68
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780740000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.61999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.68
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780743600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.67
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780747200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.67
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780750800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.68
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780754400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.69
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780758000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.76
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780761600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.79
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780765200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.86
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780768800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780772400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.8799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780776000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 585.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780779600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 454.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.53999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 586.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780783200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7896.0,
+ "old-total-discharge-override": 454.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.94999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.02
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780786800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7958.0,
+ "old-total-discharge-override": 7896.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 585.98
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780790400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7815.000000000001,
+ "old-total-discharge-override": 7958.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.39,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3836.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.04
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780794000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 229.00000000000003,
+ "old-total-discharge-override": 7815.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3836.0000000000005,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.08
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780797600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 229.00000000000003,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.06
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780801200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.86999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.09
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780804800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.38,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.12
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780808400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.04999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.11
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780812000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.81999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.12
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780815600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.66999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.14
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780819200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.5799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.15
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780822800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.15
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780826400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.17
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780830000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.18
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780833600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.19
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780837200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.2
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780840800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.21
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780844400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.23
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780848000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.24
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780851600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.25
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780855200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.25
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780858800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.29
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780862400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.29
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780866000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.29
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780869600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.29
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780873200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 454.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 586.31
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780876800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 8028.0,
+ "old-total-discharge-override": 454.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 4080.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 586.28
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780880400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7614.0,
+ "old-total-discharge-override": 8028.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.73999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 3807.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4080.0,
+ "new-discharge": 3807.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 586.29
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780884000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 456.00000000000006,
+ "old-total-discharge-override": 7614.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.31,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3807.0,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3807.0,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 586.3199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780887600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 456.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.34,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.3199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780891200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.69,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.33
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780894800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.26,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780898400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.94999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780902000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.74,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780905600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.39
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780909200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.53999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.39
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780912800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.4
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780916400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.42
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780920000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.42
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780923600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.42
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780927200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.43
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780930800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.43
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780934400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.44
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780938000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780941600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780945200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 454.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 586.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780948800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 8125.000000000001,
+ "old-total-discharge-override": 454.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.14,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780952400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 8125.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.81,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780956000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.2699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780959600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11304.000000000002,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3425.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 3866.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 586.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780963200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 458.00000000000006,
+ "old-total-discharge-override": 11304.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.06999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3425.0,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3866.0000000000005,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 586.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780966800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 458.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.84,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780970400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.06999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.45
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780974000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.5199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.45
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780977600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.14,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780981200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780984800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.69999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780988400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.59,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780992000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780995600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1780999200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781002800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781006400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781010000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781013600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.55
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781017200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781020800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781024400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781028000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 454.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.68,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781031600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11471.000000000002,
+ "old-total-discharge-override": 454.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.94,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3575.0000000000005,
+ "new-discharge": 3575.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.55
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781035200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11471.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.13,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3575.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781038800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781042400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781046000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11791.0,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3625.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4153.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.52
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781049600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11791.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.59,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3625.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4153.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.52
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781053200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11304.000000000002,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3425.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 3866.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.52
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781056800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 458.00000000000006,
+ "old-total-discharge-override": 11304.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.11999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3425.0,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3866.0000000000005,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781060400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 458.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.86999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781064000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.09,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781067600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781071200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.16,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781074800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781078400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.71,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.52
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781082000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781085600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781089200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781092800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781096400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.58
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781100000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781103600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781107200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781110800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.59
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781114400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 908.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 454.0,
+ "new-discharge": 454.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 2.0
+ }
+ ],
+ "pool-elevation": 586.59
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781118000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11371.000000000002,
+ "old-total-discharge-override": 908.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.91,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3475.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 454.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781121600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11371.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.01,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3475.0,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781125200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781128800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781132400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.49999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781136000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11304.000000000002,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3425.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 3866.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781139600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 458.00000000000006,
+ "old-total-discharge-override": 11304.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.0799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3425.0,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3866.0000000000005,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 586.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781143200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 458.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781146800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.06999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781150400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781154000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.1499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781157600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781161200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.71,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781164800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.59999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781168400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781172000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.55
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781175600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.56
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781179200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781182800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781186400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.58
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781190000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.58
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781193600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.59
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781197200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.58
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781200800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 681.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 227.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 586.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781204400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11371.000000000002,
+ "old-total-discharge-override": 681.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.94999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3475.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 227.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781208000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11404.0,
+ "old-total-discharge-override": 11371.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.13,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3475.0,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 3866.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781211600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11404.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3866.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.52
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781215200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.53999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781218800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781222400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11304.000000000002,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3425.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 3866.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 586.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781226000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 458.00000000000006,
+ "old-total-discharge-override": 11304.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.11999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3425.0,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3866.0000000000005,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 586.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781229600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 458.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.86999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781233200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.0799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781236800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781240400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.14,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781244000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781247600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.71999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781251200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.71,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781254800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.68,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781258400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781262000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.7699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.58
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781265600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.81999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781269200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.91,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.6599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781272800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.86999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.75
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781276400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.74,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781280000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781283600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.56999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.8499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781287200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781290800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.89
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781294400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7538.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 1488.0000000000002,
+ "new-discharge": 1488.0000000000002,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 8.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3025.0,
+ "new-discharge": 3025.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 22.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3025.0,
+ "new-discharge": 3025.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 22.0
+ }
+ ],
+ "pool-elevation": 586.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781298000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 8032.000000000001,
+ "old-total-discharge-override": 7538.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.69,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 1488.0000000000002,
+ "new-discharge": 1282.0000000000002,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 6.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3025.0,
+ "new-discharge": 3375.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3025.0,
+ "new-discharge": 3375.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ }
+ ],
+ "pool-elevation": 586.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781301600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11558.0,
+ "old-total-discharge-override": 8032.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.18,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 1282.0000000000002,
+ "new-discharge": 3600.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3375.0000000000005,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3375.0000000000005,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781305200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11691.000000000002,
+ "old-total-discharge-override": 11558.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3600.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4153.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.94
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781308800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11551.000000000002,
+ "old-total-discharge-override": 11691.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.5799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 3525.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4153.0,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 4013.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 586.94
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781312400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 11551.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.0799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3525.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4013.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.98
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781316000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.98
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781319600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.06999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 586.99
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781323200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781326800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.16,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.02
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781330400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.02
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781334000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.71999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.03
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781337600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.05
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781341200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.06
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781344800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.0699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781348400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.08
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781352000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.0999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781355600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.14
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781359200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.11
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781362800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.0999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781366400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.12
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781370000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.15
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781373600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.14
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781377200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.15
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781380800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.17
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781384400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.1599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781388000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.1599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781391600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.17
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781395200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.1599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781398800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.15
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781402400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.15
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781406000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.1599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781409600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.17
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781413200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.18
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781416800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.2
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781420400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.3
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781424000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.25
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781427600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.23
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781431200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.25
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781434800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.3
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781438400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.29
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781442000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.36
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781445600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.39
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781449200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.4099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781452800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.4
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781456400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.42
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781460000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.42
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781463600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.4099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781467200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.42
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781470800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.44
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781474400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.44
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781478000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.45
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781481600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781485200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781488800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781492400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781496000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781499600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781503200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781506800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.52
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781510400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.52
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781514000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.52
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781517600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781521200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781524800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.54
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781528400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.55
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781532000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.56
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781535600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781539200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781542800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781546400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.58
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781550000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 452.00000000000006,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 226.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 226.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 587.59
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781553600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7768.000000000001,
+ "old-total-discharge-override": 452.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.58
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781557200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7832.000000000001,
+ "old-total-discharge-override": 7768.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.78999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781560800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5196.0,
+ "old-total-discharge-override": 7832.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 456.00000000000006,
+ "new-discharge": 456.00000000000006,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 2.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 2370.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 16.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 2370.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 16.0
+ }
+ ],
+ "pool-elevation": 587.58
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781564400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 5196.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.1,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 456.00000000000006,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 2370.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 2370.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.56
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781568000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.58
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781571600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.69999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.59
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781575200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.59
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781578800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781582400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.0799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781586000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.84999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.61
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781589600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.68,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.61
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781593200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.59,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781596800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.53999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781600400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781604000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.6299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781607600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.64
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781611200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.65
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781614800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.65
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781618400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.6599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781622000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.67
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781625600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.67
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781629200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 904.0000000000001,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.61999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 226.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 226.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 452.00000000000006,
+ "new-discharge": 452.00000000000006,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 2.0
+ }
+ ],
+ "pool-elevation": 587.6599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781632800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11282.000000000002,
+ "old-total-discharge-override": 904.0000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 3450.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 452.00000000000006,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.64
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781636400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11732.000000000002,
+ "old-total-discharge-override": 11282.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.1499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3450.0,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.64
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781640000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11732.000000000002,
+ "old-total-discharge-override": 11732.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.6299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781643600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11832.000000000002,
+ "old-total-discharge-override": 11732.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3600.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781647200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11595.0,
+ "old-total-discharge-override": 11832.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.71,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3600.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.61
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781650800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11595.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.61
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781654400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11215.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3400.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3836.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781658000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 456.00000000000006,
+ "old-total-discharge-override": 11215.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.0799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3400.0000000000005,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3836.0000000000005,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 587.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781661600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 456.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.85,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781665200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.06999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.61
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781668800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.61
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781672400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3718.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.96999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3718.0,
+ "new-discharge": 3718.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.61
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781676000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3884.0000000000005,
+ "old-total-discharge-override": 3718.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.41,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3718.0,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.59
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781679600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3884.0000000000005,
+ "old-total-discharge-override": 3884.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781683200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3884.0000000000005,
+ "old-total-discharge-override": 3884.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.74999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781686800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3884.0000000000005,
+ "old-total-discharge-override": 3884.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.8299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781690400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3884.0000000000005,
+ "old-total-discharge-override": 3884.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.84,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.61
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781694000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 4112.000000000001,
+ "old-total-discharge-override": 3884.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.98999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781697600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7366.0,
+ "old-total-discharge-override": 4112.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.93,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 3450.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.59
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781701200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7784.000000000001,
+ "old-total-discharge-override": 7366.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.31999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3450.0,
+ "new-discharge": 3475.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 4080.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 587.61
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781704800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11558.0,
+ "old-total-discharge-override": 7784.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.2699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3475.0,
+ "new-discharge": 3600.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4080.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.61
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781708400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11558.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.46,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3600.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781712000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781715600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781719200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11595.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781722800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11558.0,
+ "old-total-discharge-override": 11595.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.61999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3600.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.5999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781726400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11595.0,
+ "old-total-discharge-override": 11558.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3600.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.58
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781730000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11595.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.5699999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781733600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.56
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781737200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781740800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781744400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781748000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11215.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3400.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3836.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 587.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781751600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 456.00000000000006,
+ "old-total-discharge-override": 11215.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.09,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3400.0000000000005,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3836.0000000000005,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 587.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781755200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 456.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.85,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781758800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.06999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781762400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781766000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.16,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781769600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781773200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.71999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781776800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.61999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781780400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781784000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.5199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781787600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781791200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781794800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.51
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781798400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 452.00000000000006,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.3999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 226.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 226.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781802000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7891.000000000001,
+ "old-total-discharge-override": 452.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.91999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 4007.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781805600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7959.000000000001,
+ "old-total-discharge-override": 7891.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.84,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4007.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781809200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7755.000000000001,
+ "old-total-discharge-override": 7959.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.2699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 3807.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781812800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7896.0,
+ "old-total-discharge-override": 7755.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.43,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3807.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781816400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 8160.0,
+ "old-total-discharge-override": 7896.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 4080.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 4080.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781820000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7755.000000000001,
+ "old-total-discharge-override": 8160.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.53999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4080.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4080.0,
+ "new-discharge": 3807.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781823600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 228.00000000000003,
+ "old-total-discharge-override": 7755.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.68,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3807.0,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 587.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781827200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 228.00000000000003,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.4099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781830800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.44
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781834400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.38,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.44
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781838000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.04999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781841600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.81999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781845200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.66999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.52
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781848800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.56999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781852400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781856000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781859600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.49,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781863200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781866800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.48,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781870400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781874000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781877600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781881200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781884800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 452.00000000000006,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 226.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 226.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781888400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7768.000000000001,
+ "old-total-discharge-override": 452.00000000000006,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781892000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7832.000000000001,
+ "old-total-discharge-override": 7768.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.7699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781895600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 8028.0,
+ "old-total-discharge-override": 7832.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.28999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 4080.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781899200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 8028.0,
+ "old-total-discharge-override": 8028.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.44999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4080.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 4080.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781902800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 8028.0,
+ "old-total-discharge-override": 8028.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 4080.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4080.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781906400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7896.0,
+ "old-total-discharge-override": 8028.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4080.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781910000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 7896.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.66999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781913600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.5799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781917200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.86999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781920800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.38,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781924400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 483.04999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781928000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 226.00000000000003,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 482.94,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 226.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.45
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781931600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3852.0,
+ "old-total-discharge-override": 226.00000000000003,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 484.73,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 226.00000000000003,
+ "new-discharge": 3852.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.44
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781935200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3884.0000000000005,
+ "old-total-discharge-override": 3852.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.21,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3852.0,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781938800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3748.0000000000005,
+ "old-total-discharge-override": 3884.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.51,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3748.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781942400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3884.0000000000005,
+ "old-total-discharge-override": 3748.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.69,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3748.0000000000005,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781946000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3884.0000000000005,
+ "old-total-discharge-override": 3884.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.79999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.48
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781949600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3884.0000000000005,
+ "old-total-discharge-override": 3884.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.85,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3884.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781953200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 4144.0,
+ "old-total-discharge-override": 3884.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.98999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3884.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781956800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7493.000000000001,
+ "old-total-discharge-override": 4144.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.91,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 3450.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.44
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781960400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7523.000000000001,
+ "old-total-discharge-override": 7493.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.2799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3450.0,
+ "new-discharge": 3575.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.44
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781964000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 10462.000000000002,
+ "old-total-discharge-override": 7523.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.19999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3575.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 2846.0,
+ "new-discharge": 2846.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 20.0
+ }
+ ],
+ "pool-elevation": 587.44
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781967600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11595.0,
+ "old-total-discharge-override": 10462.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.46999999999997,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 2846.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.43
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781971200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11558.0,
+ "old-total-discharge-override": 11595.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3600.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.43
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781974800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11558.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3600.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.44
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781978400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11595.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.43
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781982000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11358.0,
+ "old-total-discharge-override": 11595.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3400.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 25.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.42
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781985600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11358.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3400.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.4099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781989200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11558.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.5299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3600.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.39
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781992800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11558.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3600.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.3799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1781996400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11695.000000000002,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3600.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.3799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782000000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11595.0,
+ "old-total-discharge-override": 11695.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.66,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3600.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.37
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782003600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11452.0,
+ "old-total-discharge-override": 11595.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.66999999999996,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3836.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ }
+ ],
+ "pool-elevation": 587.36
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782007200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 4265.0,
+ "old-total-discharge-override": 11452.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.94999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3807.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 29.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3836.0000000000005,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 587.37
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782010800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3916.0000000000005,
+ "old-total-discharge-override": 4265.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.44,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3807.0,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.36
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782014400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3916.0000000000005,
+ "old-total-discharge-override": 3916.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.13,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782018000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3916.0000000000005,
+ "old-total-discharge-override": 3916.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782021600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3916.0000000000005,
+ "old-total-discharge-override": 3916.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.0199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782025200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3916.0000000000005,
+ "old-total-discharge-override": 3916.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.0199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782028800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 4043.0000000000005,
+ "old-total-discharge-override": 3916.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.0199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782032400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3916.0000000000005,
+ "old-total-discharge-override": 4043.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.94999999999993,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.36
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782036000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3916.0000000000005,
+ "old-total-discharge-override": 3916.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 485.99999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 3916.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782039600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 4271.0,
+ "old-total-discharge-override": 3916.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 486.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 228.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3916.0000000000005,
+ "new-discharge": 4043.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782043200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7523.000000000001,
+ "old-total-discharge-override": 4271.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.01,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 228.00000000000003,
+ "new-discharge": 3575.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4043.0000000000005,
+ "new-discharge": 3948.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 587.34
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782046800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 7784.000000000001,
+ "old-total-discharge-override": 7523.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 487.31999999999994,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3575.0000000000005,
+ "new-discharge": 3475.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3948.0,
+ "new-discharge": 4080.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 229.00000000000003,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ }
+ ],
+ "pool-elevation": 587.3499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782050400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11732.000000000002,
+ "old-total-discharge-override": 7784.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.35,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3475.0,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4080.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 229.00000000000003,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.34
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782054000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11732.000000000002,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.54999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.33
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782057600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.61999999999995,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.3199999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782061200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11595.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 4116.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 31.0
+ }
+ ],
+ "pool-elevation": 587.29
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782064800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11595.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.56,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4116.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.29
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "change-date": 1782068400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 11458.0,
+ "old-total-discharge-override": 11458.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 488.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3500.0000000000005,
+ "new-discharge": 3500.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 26.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3979.0,
+ "new-discharge": 3979.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 30.0
+ }
+ ],
+ "pool-elevation": 587.29
+ }
+]
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/TurbineChanges/KEYS.json b/cda-etl/data/sample-data/SWT/TurbineChanges/KEYS.json
new file mode 100644
index 000000000..e88a0cf4c
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/TurbineChanges/KEYS.json
@@ -0,0 +1,27502 @@
+[
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780272000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780275600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780279200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780282800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780286400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.27,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780290000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780293600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780297200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780300800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780304400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6799999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780308000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.66,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780311600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780315200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.91
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780318800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780322400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 4900.000000000001,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.82,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4900.000000000001,
+ "new-discharge": 4900.000000000001,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 27.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.91
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780326000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 4900.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.99,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4900.000000000001,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.91
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780329600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780333200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780336800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780340400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780344000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780347600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780351200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780354800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780358400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780362000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.04,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780365600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780369200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780372800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780376400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.27,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780380000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780383600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780387200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780390800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.73,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.0399999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780394400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.94
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780398000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.96
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780401600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9199999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780402200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.91
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780405200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780408800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.97
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780412400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780416000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.03
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780419600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.3699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.0099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780423200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9299999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.0099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780426800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780430400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780434000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.97
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780437600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780441200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780444800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.96
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780448400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.27,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780452000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780455600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.99
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780459200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.57,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.99
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780462800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.92,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.0099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780466400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780470000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.97
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780473600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.1,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.97
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780477200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 36.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780480800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.04,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780484400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.94
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780488000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.94
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780491600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9199999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780495200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.91
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780498800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.91
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780502400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8899999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780506000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780509600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780513200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 36.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780516800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780520400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780524000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780527600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780531200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780534800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780538400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780542000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780545600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.77
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780549200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.8999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780552800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.27,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780556400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.01,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780560000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780563600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780567200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.73,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780570800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6799999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780574400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780578000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780581600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.8899999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780585200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.91
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780588800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.91
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780592400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9199999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780596000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.58,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.94
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780599600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.58,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780603200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.57,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780606800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.57,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.97
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780610400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5599999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 725.9799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780614000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5599999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780617600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780621200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.0099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780624800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.03
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780628400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.03
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780632000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.0399999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780635600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.05
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780639200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.07
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780642800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.09
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780646400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.1
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780650000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.12
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780653600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.13
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780657200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.13
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780660800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.15
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780664400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.15
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780668000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.1699999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780671600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.18
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780675200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.21
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780678800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.2299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780682400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.25
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780686000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780689600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.27
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780693200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.36,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.27
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780696800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.91,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.28
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780700400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.27
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780704000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.85,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.28
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780707600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.26,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.3
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780711200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.3299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780714800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.35
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780718400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.37
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780722000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.3899999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780725600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6799999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.41
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780729200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.4199999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780732800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.4499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780736400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780740000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.4799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780743600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780747200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.5099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780750800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.5799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780754400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.4999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.6099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780758000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.66
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780761600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.6999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780765200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.71
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780768800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.1,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.72
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780772400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.1499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780776000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.14,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 36.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.75
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780779600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.1,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780783200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780786800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780790400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780794000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.8999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.77
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780797600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.29,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780801200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.02,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780804800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780808400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.79,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780812000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.74,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780815600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8899999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780819200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.67,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780822800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780826400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.96
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780830000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.97
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780833600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780837200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780840800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.0099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780844400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.05
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780848000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.3999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.05
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780851600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.05
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780855200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.05
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780858800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.02
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780862400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.02
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780866000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.02
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780869600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.02
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780870320000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 2900.0000000000005,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 2900.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 7.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.02
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780873200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5000.000000000001,
+ "old-total-discharge-override": 2900.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 2900.0000000000005,
+ "new-discharge": 5000.000000000001,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 28.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.0099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780876800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5000.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5000.000000000001,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.0099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780880400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780884000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.02,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780887600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780891200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.97
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780894800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.97
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780898400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.96
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780902000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.96
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780905600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780909200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780912800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780916400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.04,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780920000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780923600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780927200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780930800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8899999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780934400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.1,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780938000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780941600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780945200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 36.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780948800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780952400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.1,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780956000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780959600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780963200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780966800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780970400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780974000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780977600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.04,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780981200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780984800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.27,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780988400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780992000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780995600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1780999200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.73,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781002800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781006400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.66,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781010000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781013600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8899999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781017200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781020800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.91
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781024400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.3999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781028000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781031600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.02,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8899999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781035200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781038800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781042400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781046000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781049600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 36.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781053200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781056800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781060400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781064000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781067600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.04,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781071200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781074800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781078400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.04,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781082000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 36.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781085600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781089200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781092800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.04,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781096400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.74
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781100000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781103600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781107200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.6999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781110800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.6999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781114400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.6999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781118000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.07,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.6699999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781121600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.66
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781125200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.11,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.65
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781128800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.63
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781132400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5700.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.1,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5700.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 36.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.63
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781136000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5700.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5700.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.63
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781139600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.63
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781143200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.04,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.63
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781145240000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 4200.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 4200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 20.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.6099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781146800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 3700.0000000000005,
+ "old-total-discharge-override": 4200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 4200.0,
+ "new-discharge": 3700.0000000000005,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 15.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.6099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781150400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 3700.0000000000005,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 3700.0000000000005,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.6099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781154000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.8999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.6099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781157600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.27,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.63
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781161200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.01,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.63
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781164800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.8699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.66
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781168400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.79,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.66
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781172000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.74,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.66
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781175600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.68
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781179200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.67,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.69
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781182800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.72
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781186400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781190000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.74
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781193600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781197200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.45,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.75
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781200800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.91,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781204400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.99,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781208000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781211600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.08,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.72
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781215200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.72
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781218800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781222400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.06,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781226000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.72
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781229600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.8999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781233200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.27,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781236800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781240400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.7599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781244000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.77,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.77
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781247600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781251200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.67,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781254800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.81
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781258400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781262000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781265600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781269200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.84
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781272800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.58,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781276400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.58,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781280000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.57,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781283600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.39,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8899999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781287200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781290800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.02,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781294400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781298000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781301600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.0299999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781305200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.05,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781308800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.04,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.85
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781312400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.02,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781316000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 400.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.92,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 400.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 2.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781319600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 400.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.2799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 400.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.88
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781323200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.01,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781326800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781330400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.93
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781334000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.96
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781337600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6799999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 726.9799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781341200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.66,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781344800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.09
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781348400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.05
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781352000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.0799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781355600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.09
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781359200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.0799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781362800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.1399999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781366400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.1399999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781370000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.58,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.16
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781373600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.58,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.1699999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781377200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.57,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.19
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781380800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5599999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.1999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781384400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5599999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.1999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781388000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.21
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781391600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.2299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781395200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.2299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781398800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.24
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781402400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781406000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781409600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781413200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.38
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781416800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.4199999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781420400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.38
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781424000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.38
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781427600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.4499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781431200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.58,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781434800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.58,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.4499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781438400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.57,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.47
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781442000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.57,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.4799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781445600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5599999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.49
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781449200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5599999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781452800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.5099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781456400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.53
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781460000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.5399999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781463600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.56
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781467200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.57
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781470800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.6
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781474400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.6
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781478000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.62
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781481600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.6399999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781485200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.65
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781488800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.68
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781492400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.72
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781496000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.75
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781499600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.77
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781503200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781506800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.8
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781510400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781514000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.87
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781517600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.8899999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781521200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.9199999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781524800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.9499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781528400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.55,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 727.96
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781532000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.54,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.0
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781535600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.54,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.0099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781539200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.54,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.0399999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781542800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.54,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.0799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781546400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.54,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.1099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781550000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.3699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.12
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781553600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.8699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.13
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781557200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.13
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781560800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.1399999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781564400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.02,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.16
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781568000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.1999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781571600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.27,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.2299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781575200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781578800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.34
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781582400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.77,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.4
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781586000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781589600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6799999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.5
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781593200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6499999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.5799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781596800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.6399999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781600400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.68
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781604000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.61,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.75
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781607600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781611200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.8599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781614800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.94
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781618400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.58,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 728.9799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781622000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 639.8999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.03
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781625600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.1799999999998,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.0799999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781629200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.12
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781632800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.15
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781636400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.1999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781640000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.22
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781643600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.27
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781647200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.01,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781650800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.99,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781654400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.01,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.37
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781658000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.89,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.4199999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781661600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.27,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.46
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781665200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.5099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781668800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.86,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.55
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781672400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.7799999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.6
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781676000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.73,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.66
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781679600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.69
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781683200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.67,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.7299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781686800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.64,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.78
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781690400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.63,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.82
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781694000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6199999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.8299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781697600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.8899999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781701200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.91
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781704800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.96
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781708400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 729.99
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781712000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.5899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.0099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781715600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.58,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.03
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781719200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.41,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.05
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781722800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5400.000000000001,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.81,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5400.000000000001,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.07
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781726400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5400.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5400.000000000001,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.09
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781730000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.09
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781733600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.1099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781737200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.1099999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781740800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.12
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781744400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.13
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781748000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.1399999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781751600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.1399999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781755200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.15
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781758800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.1699999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781762400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.1699999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781766000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.19
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781769600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.19
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781773200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.1999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781776800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.1999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781780400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5400.000000000001,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5400.000000000001,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.1999999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781784000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5400.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5400.000000000001,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.21
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781787600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.21
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781791200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.22
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781794800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781798400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.21
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781802000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.24
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781805600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.24
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781809200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.24
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781812800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.24
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781816400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.24
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781820000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.24
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781823600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781827200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.24
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781830800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.25
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781834400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.24
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781838000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5400.000000000001,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9399999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5400.000000000001,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781841600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5400.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5400.000000000001,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.25
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781845200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.8699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781848800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.26,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.27
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781852400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781856000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.6899999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781859600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5400.000000000001,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.82,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5400.000000000001,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 33.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781863200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5400.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.92,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5400.000000000001,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781866800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781870400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781874000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781877600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781881200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781884800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781888400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781892000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781895600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781899200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.27
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781902800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781906400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781910000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781913600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5400.000000000001,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5400.000000000001,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781917200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5400.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5400.000000000001,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781920800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.26,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.3
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781924400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.99,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781928000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.66,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.3299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781931600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5400.000000000001,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.82,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5400.000000000001,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.3299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781935200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5400.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.91,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5400.000000000001,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.3299999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781938800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781942400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781946000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781949600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781953200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781956800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781960400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781964000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.3
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781967600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781971200000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.3
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781974800000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.95,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781978400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781982000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5400.000000000001,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5400.000000000001,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 34.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781985600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5400.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5400.000000000001,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781989200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 36.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.27
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781992800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1781996400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782000000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.99,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782003600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5600.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5600.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 36.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782007200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5600.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5600.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782010800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 641.01,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782014400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.99,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782018000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.88,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782021600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 638.27,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.2899999999998
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782025200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 0.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.32
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782028800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 200.0,
+ "old-total-discharge-override": 0.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 637.67,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 200.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 1.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.3599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782032400000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5400.000000000001,
+ "old-total-discharge-override": 200.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.8,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 200.0,
+ "new-discharge": 5400.000000000001,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 33.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.3599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782036000000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5400.000000000001,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.92,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5400.000000000001,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.3599999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782039600000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.96,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.38
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782043200000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.38
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782046800000,
+ "protected": true,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9699999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.41
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782050400000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.4499999999999
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782054000000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.98,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.41
+ },
+ {
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "change-date": 1782057600000,
+ "protected": false,
+ "discharge-computation-type": {
+ "office-id": "SWT",
+ "display-value": "R",
+ "tooltip": "Reported by powerhouse",
+ "active": true
+ },
+ "reason-type": {
+ "office-id": "SWT",
+ "display-value": "S",
+ "tooltip": "Scheduled release to meet loads",
+ "active": true
+ },
+ "notes": "from SCADA",
+ "new-total-discharge-override": 5500.0,
+ "old-total-discharge-override": 5500.0,
+ "discharge-units": "cfs",
+ "tailwater-elevation": 640.9999999999999,
+ "elevation-units": "ft",
+ "settings": [
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 5500.0,
+ "new-discharge": 5500.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 35.0
+ },
+ {
+ "type": "turbine-setting",
+ "location-id": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2"
+ },
+ "discharge-units": "cfs",
+ "old-discharge": 0.0,
+ "new-discharge": 0.0,
+ "generation-units": "MW",
+ "scheduled-load": 0.0,
+ "real-power": 0.0
+ }
+ ],
+ "pool-elevation": 730.4499999999999
+ }
+]
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Turbines/EUFA-Turbine1.json b/cda-etl/data/sample-data/SWT/Turbines/EUFA-Turbine1.json
new file mode 100644
index 000000000..cba0b609e
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Turbines/EUFA-Turbine1.json
@@ -0,0 +1,28 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine1",
+ "latitude": 35.3070419,
+ "longitude": -95.3627509,
+ "active": true,
+ "public-name": "Turbine1",
+ "long-name": "Turbine1",
+ "timezone-name": "US/Central",
+ "location-kind": "TURBINE",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Turbines/EUFA-Turbine2.json b/cda-etl/data/sample-data/SWT/Turbines/EUFA-Turbine2.json
new file mode 100644
index 000000000..0447127f9
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Turbines/EUFA-Turbine2.json
@@ -0,0 +1,28 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine2",
+ "latitude": 35.3070419,
+ "longitude": -95.3627509,
+ "active": true,
+ "public-name": "Turbine2",
+ "long-name": "Turbine2",
+ "timezone-name": "US/Central",
+ "location-kind": "TURBINE",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Turbines/EUFA-Turbine3.json b/cda-etl/data/sample-data/SWT/Turbines/EUFA-Turbine3.json
new file mode 100644
index 000000000..e360a0fb1
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Turbines/EUFA-Turbine3.json
@@ -0,0 +1,28 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "EUFA"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "EUFA-Turbine3",
+ "latitude": 35.3070419,
+ "longitude": -95.3627509,
+ "active": true,
+ "public-name": "Turbine3",
+ "long-name": "Turbine3",
+ "timezone-name": "US/Central",
+ "location-kind": "TURBINE",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Haskell",
+ "nearest-city": "Hoyt, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Turbines/KEYS-Turbine1.json b/cda-etl/data/sample-data/SWT/Turbines/KEYS-Turbine1.json
new file mode 100644
index 000000000..b17434a40
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Turbines/KEYS-Turbine1.json
@@ -0,0 +1,28 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine1",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "Turbine1",
+ "long-name": "Turbine1",
+ "timezone-name": "US/Central",
+ "location-kind": "TURBINE",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/SWT/Turbines/KEYS-Turbine2.json b/cda-etl/data/sample-data/SWT/Turbines/KEYS-Turbine2.json
new file mode 100644
index 000000000..86989507e
--- /dev/null
+++ b/cda-etl/data/sample-data/SWT/Turbines/KEYS-Turbine2.json
@@ -0,0 +1,28 @@
+{
+ "project-id": {
+ "office-id": "SWT",
+ "name": "KEYS"
+ },
+ "location": {
+ "office-id": "SWT",
+ "name": "KEYS-Turbine2",
+ "latitude": 36.1506371,
+ "longitude": -96.2525088,
+ "active": true,
+ "public-name": "Turbine2",
+ "long-name": "Turbine2",
+ "timezone-name": "US/Central",
+ "location-kind": "TURBINE",
+ "nation": "US",
+ "state-initial": "OK",
+ "county-name": "Tulsa",
+ "nearest-city": "Sand Springs, OK",
+ "horizontal-datum": "NAD83",
+ "published-longitude": 0.0,
+ "published-latitude": 0.0,
+ "vertical-datum": "NGVD29",
+ "elevation": 0.0,
+ "bounding-office-id": "SWT",
+ "elevation-units": "m"
+ }
+}
\ No newline at end of file
diff --git a/cda-etl/data/sample-data/sample-app.yml b/cda-etl/data/sample-data/sample-app.yml
index fdfe1f62c..45a70b0bc 100644
--- a/cda-etl/data/sample-data/sample-app.yml
+++ b/cda-etl/data/sample-data/sample-app.yml
@@ -4,26 +4,111 @@ settings:
endTime: now
maxThreads: 1
logLevel: INFO
- path: /data/sample-app
+ path: /data/sample-data
offices:
- id: SWT
enabled: true
projects:
+ - id: KEYS
+ enabled: true
+ outlets:
+ - id: KEYS-TG1
+ - id: KEYS-TG2
+ - id: KEYS-TG4
+ - id: KEYS-TG6
+ - id: KEYS-TG9
+ - id: KEYS-TG10
+ - id: KEYS-TG12
+ - id: KEYS-TG14
+ - id: KEYS-TG17
+ - id: KEYS-SG2
+ - id: KEYS-SG4
+ - id: KEYS-SG7
+ - id: KEYS-SG9
+ - id: KEYS-LF1
+ - id: KEYS-TG16
+ - id: KEYS-SG1
+ - id: KEYS-SG3
+ - id: KEYS-SG5
+ - id: KEYS-SG6
+ - id: KEYS-SG8
+ - id: KEYS-TG11
+ - id: KEYS-TG13
+ - id: KEYS-TG15
+ - id: KEYS-TG18
+ - id: KEYS-TG3
+ - id: KEYS-TG5
+ - id: KEYS-TG7
+ - id: KEYS-TG8
+ turbines:
+ - id: KEYS-Turbine1
+ - id: KEYS-Turbine2
+ gateChanges:
+ enabled: true
+ turbineChanges:
+ enabled: true
+ clobs:
+ - id: FLOW.KEYS.GATED_TOTAL
+ - id: FLOW.KEYS.LOCK_TOTAL
+ - id: FLOW.KEYS.LOW FLOW_TOTAL
+ - id: FLOW.KEYS.PROJECT_TOTAL
+ - id: FLOW.KEYS.PUMP_IN_TOTAL
+ - id: FLOW.KEYS.PUMP_OUT_BELOW_TOTAL
+ - id: FLOW.KEYS.PUMP_OUT_TOTAL
+ - id: FLOW.KEYS.SLUICEGATE_TOTAL
+ - id: FLOW.KEYS.TAINTERGATE_TOTAL
+ - id: FLOW.KEYS.TURBINE_TOTAL
+ - id: FLOW.KEYS.UNCONTROLLED_TOTAL
+ ratings:
+ - id: KEYS.Elev;Area.Linear.Production
+ por: true
+ - id: KEYS.Elev;Stor.Linear.Production
+ por: true
- id: EUFA
enabled: true
locations:
- id: EUFA-Dam
- outlets: []
- turbines: []
+ outlets:
+ - id: EUFA-SG1
+ - id: EUFA-TG1
+ - id: EUFA-TG2
+ - id: EUFA-TG3
+ - id: EUFA-TG4
+ - id: EUFA-TG5
+ - id: EUFA-TG6
+ - id: EUFA-TG7
+ - id: EUFA-TG8
+ - id: EUFA-TG9
+ - id: EUFA-TG10
+ - id: EUFA-TG11
+ turbines:
+ - id: EUFA-Turbine1
+ - id: EUFA-Turbine2
+ - id: EUFA-Turbine3
embankments: []
+ locks: []
+ waterUsers: []
+ gateChanges:
+ enabled: true
+ turbineChanges:
+ enabled: true
clobs:
+ - id: FLOW.EUFA.CONTROLLED
+ - id: FLOW.EUFA.EUFA TURBINE_TOTAL
+ - id: FLOW.EUFA.GATED_TOTAL
+ - id: FLOW.EUFA.LOCK_TOTAL
- id: FLOW.EUFA.PROJECT_TOTAL
+ - id: FLOW.EUFA.PUMP_IN_TOTAL
+ - id: FLOW.EUFA.PUMP_OUT_BELOW_TOTAL
+ - id: FLOW.EUFA.PUMP_OUT_TOTAL
+ - id: FLOW.EUFA.SLUICEGATE_TOTAL
+ - id: FLOW.EUFA.TAINTERGATE_TOTAL
+ - id: FLOW.EUFA.TURBINE_TOTAL
+ - id: FLOW.EUFA.UNCONTROLLED_TOTAL
locationLevels:
- id: EUFA-Dam.Elev.Inst.0.Top of Flood
por: true
ratings:
- - id: EUFA.Stage;Flow.Standard.Production
- por: true
- id: EUFA.Elev;Area.Linear.Production
por: true
- id: EUFA.Elev;Stor.Linear.Production
@@ -43,9 +128,7 @@ offices:
- id: EUFA.Stor.Inst.1Hour.0.Ccp-Rev
- id: EUFA.Flow-Res In.Ave.~1Day.1Day.Copied-Ccp-Adjusted
- id: EUFA.Temp-Air.Inst.1Hour.0.Ccp-Rev
- - id: EUFA.Precip-Mean Areal.Total.~1Day.1Day.Metvue-Computed
- id: EUFA.Flow-Res In.Ave.1Hour.1Hour.Regi-Rev-Computed
- - id: EUFA.Evap.Total.~1Day.1Day.Ccp-Rev
- id: EUFA.Precip-Inc.Total.1Hour.1Hour.Ccp-Rev
- id: EUFA.%-Humidity.Inst.1Hour.0.Ccp-Rev
- id: EUFA.Flow-Res In.Ave.~1Day.1Day.Regi-Rev-Adjusted
diff --git a/cda-etl/src/cda_etl/config.py b/cda-etl/src/cda_etl/config.py
index bc3f96fb2..377788472 100644
--- a/cda-etl/src/cda_etl/config.py
+++ b/cda-etl/src/cda_etl/config.py
@@ -199,6 +199,283 @@ def from_dict(cls, data: dict[str, Any]) -> "PropertyConfig":
)
+@dataclass(frozen=True)
+class OutletConfig:
+ id: str
+ enabled: bool
+ raw: dict[str, Any]
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> "OutletConfig":
+ return cls(
+ id=data["id"],
+ enabled=_is_enabled(data),
+ raw=data,
+ )
+
+
+@dataclass(frozen=True)
+class TurbineConfig:
+ id: str
+ enabled: bool
+ raw: dict[str, Any]
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> "TurbineConfig":
+ return cls(
+ id=data["id"],
+ enabled=_is_enabled(data),
+ raw=data,
+ )
+
+
+@dataclass(frozen=True)
+class LockConfig:
+ id: str
+ enabled: bool
+ raw: dict[str, Any]
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> "LockConfig":
+ return cls(
+ id=data["id"],
+ enabled=_is_enabled(data),
+ raw=data,
+ )
+
+
+def _window_from_dict(data: dict[str, Any]) -> tuple[str | None, str | None]:
+ download = data.get("download", {}) if isinstance(data.get("download"), dict) else {}
+ return download.get("startTime"), download.get("endTime")
+
+
+@dataclass(frozen=True)
+class GateChangeConfig:
+ """
+ Gate changes are a single per-project time-windowed feed, not a list of
+ named ids - so this holds one config per project rather than one per item.
+ """
+
+ enabled: bool
+ raw: dict[str, Any]
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> "GateChangeConfig":
+ return cls(
+ enabled=_is_enabled(data),
+ raw=data,
+ )
+
+ @property
+ def start_time(self) -> str | None:
+ return _window_from_dict(self.raw)[0]
+
+ @property
+ def end_time(self) -> str | None:
+ return _window_from_dict(self.raw)[1]
+
+
+@dataclass(frozen=True)
+class TurbineChangeConfig:
+ """
+ Turbine changes, like gate changes, are one per-project time-windowed feed.
+ """
+
+ enabled: bool
+ raw: dict[str, Any]
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> "TurbineChangeConfig":
+ return cls(
+ enabled=_is_enabled(data),
+ raw=data,
+ )
+
+ @property
+ def start_time(self) -> str | None:
+ return _window_from_dict(self.raw)[0]
+
+ @property
+ def end_time(self) -> str | None:
+ return _window_from_dict(self.raw)[1]
+
+
+@dataclass(frozen=True)
+class PumpConfig:
+ """
+ A pump association (pump-in / pump-out / pump-out-below) on a water
+ contract. CDA has no standalone pump resource - a pump is only ever a
+ location tied to a contract - so this always lives under a WaterContractConfig.
+ """
+
+ id: str
+ type: str
+ enabled: bool
+ raw: dict[str, Any]
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> "PumpConfig":
+ pump_type = data.get("type")
+ if not pump_type:
+ raise ValueError("Each pump must define a type (IN, OUT, or OUT BELOW).")
+
+ return cls(
+ id=data["id"],
+ type=str(pump_type).upper(),
+ enabled=_is_enabled(data),
+ raw=data,
+ )
+
+
+@dataclass(frozen=True)
+class WaterContractConfig:
+ id: str
+ enabled: bool
+ raw: dict[str, Any]
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> "WaterContractConfig":
+ return cls(
+ id=data["id"],
+ enabled=_is_enabled(data),
+ raw=data,
+ )
+
+ def pumps(self, enabled_only: bool = True) -> Iterator[PumpConfig]:
+ for data in self.raw.get("pumps", []):
+ pump = PumpConfig.from_dict(data)
+
+ if enabled_only and not pump.enabled:
+ continue
+
+ yield pump
+
+ @property
+ def _accounting(self) -> dict[str, Any]:
+ accounting = self.raw.get("accounting")
+ return accounting if isinstance(accounting, dict) else {}
+
+ @property
+ def accounting_enabled(self) -> bool:
+ # Unlike enabled flags elsewhere, absence here means "not configured",
+ # not "on by default" - a contract with no accounting: block at all
+ # should not trigger accounting staging/publishing.
+ if "accounting" not in self.raw:
+ return False
+
+ return _is_enabled(self._accounting)
+
+ @property
+ def accounting_start_time(self) -> str | None:
+ return self._accounting.get("startTime")
+
+ @property
+ def accounting_end_time(self) -> str | None:
+ return self._accounting.get("endTime")
+
+
+@dataclass(frozen=True)
+class WaterUserConfig:
+ id: str
+ enabled: bool
+ raw: dict[str, Any]
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> "WaterUserConfig":
+ return cls(
+ id=data["id"],
+ enabled=_is_enabled(data),
+ raw=data,
+ )
+
+ def contracts(self, enabled_only: bool = True) -> Iterator[WaterContractConfig]:
+ for data in self.raw.get("contracts", []):
+ contract = WaterContractConfig.from_dict(data)
+
+ if enabled_only and not contract.enabled:
+ continue
+
+ yield contract
+
+
+@dataclass(frozen=True)
+class LocationGroupConfig:
+ category_id: str
+ id: str
+ enabled: bool
+ raw: dict[str, Any]
+ all_in_category: bool = False
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> "LocationGroupConfig":
+ category_id = data.get("categoryId")
+ group_id = data.get("id")
+ all_in_category = data.get("all") is True
+
+ if not category_id or (not group_id and not all_in_category):
+ raise ValueError("Each location group must define categoryId and id.")
+
+ return cls(
+ category_id=category_id,
+ id=group_id or "*",
+ all_in_category=all_in_category,
+ enabled=_is_enabled(data),
+ raw=data,
+ )
+
+ @property
+ def group_office_id(self) -> str | None:
+ return self.raw.get("groupOfficeId")
+
+ @property
+ def category_office_id(self) -> str | None:
+ return self.raw.get("categoryOfficeId")
+
+ @property
+ def assigned_locations(self) -> list[dict[str, Any]]:
+ assigned = self.raw.get("assignedLocations")
+ return list(assigned) if isinstance(assigned, list) else []
+
+
+@dataclass(frozen=True)
+class TimeseriesGroupConfig:
+ category_id: str
+ id: str
+ enabled: bool
+ raw: dict[str, Any]
+ all_in_category: bool = False
+
+ @classmethod
+ def from_dict(cls, data: dict[str, Any]) -> "TimeseriesGroupConfig":
+ category_id = data.get("categoryId")
+ group_id = data.get("id")
+ all_in_category = data.get("all") is True
+
+ if not category_id or (not group_id and not all_in_category):
+ raise ValueError("Each timeseries group must define categoryId and id.")
+
+ return cls(
+ category_id=category_id,
+ id=group_id or "*",
+ all_in_category=all_in_category,
+ enabled=_is_enabled(data),
+ raw=data,
+ )
+
+ @property
+ def group_office_id(self) -> str | None:
+ return self.raw.get("groupOfficeId")
+
+ @property
+ def category_office_id(self) -> str | None:
+ return self.raw.get("categoryOfficeId")
+
+ @property
+ def assigned_time_series(self) -> list[dict[str, Any]]:
+ assigned = self.raw.get("assignedTimeSeries")
+ return list(assigned) if isinstance(assigned, list) else []
+
+
def _iter_property_configs(raw_properties: list[Any], enabled_only: bool) -> Iterator[PropertyConfig]:
for data in raw_properties:
if isinstance(data, dict) and "properties" in data:
@@ -295,6 +572,66 @@ def ratings(self, enabled_only: bool = True) -> Iterator[RatingConfig]:
def properties(self, enabled_only: bool = True) -> Iterator[PropertyConfig]:
yield from _iter_property_configs(self.raw.get("properties", []), enabled_only)
+ def outlets(self, enabled_only: bool = True) -> Iterator[OutletConfig]:
+ for data in self.raw.get("outlets", []):
+ outlet = OutletConfig.from_dict(data)
+
+ if enabled_only and not outlet.enabled:
+ continue
+
+ yield outlet
+
+ def turbines(self, enabled_only: bool = True) -> Iterator[TurbineConfig]:
+ for data in self.raw.get("turbines", []):
+ turbine = TurbineConfig.from_dict(data)
+
+ if enabled_only and not turbine.enabled:
+ continue
+
+ yield turbine
+
+ def locks(self, enabled_only: bool = True) -> Iterator[LockConfig]:
+ for data in self.raw.get("locks", []):
+ lock = LockConfig.from_dict(data)
+
+ if enabled_only and not lock.enabled:
+ continue
+
+ yield lock
+
+ def water_users(self, enabled_only: bool = True) -> Iterator[WaterUserConfig]:
+ for data in self.raw.get("waterUsers", []):
+ water_user = WaterUserConfig.from_dict(data)
+
+ if enabled_only and not water_user.enabled:
+ continue
+
+ yield water_user
+
+ def gate_changes(self, enabled_only: bool = True) -> GateChangeConfig | None:
+ data = self.raw.get("gateChanges")
+ if not isinstance(data, dict):
+ return None
+
+ gate_changes = GateChangeConfig.from_dict(data)
+
+ if enabled_only and not gate_changes.enabled:
+ return None
+
+ return gate_changes
+
+ def turbine_changes(self, enabled_only: bool = True) -> TurbineChangeConfig | None:
+ data = self.raw.get("turbineChanges")
+ if not isinstance(data, dict):
+ return None
+
+ turbine_changes = TurbineChangeConfig.from_dict(data)
+
+ if enabled_only and not turbine_changes.enabled:
+ return None
+
+ return turbine_changes
+
@dataclass(frozen=True)
class OfficeConfig:
@@ -322,6 +659,24 @@ def projects(self, enabled_only: bool = True) -> Iterator[ProjectConfig]:
def properties(self, enabled_only: bool = True) -> Iterator[PropertyConfig]:
yield from _iter_property_configs(self.raw.get("properties", []), enabled_only)
+ def location_groups(self, enabled_only: bool = True) -> Iterator[LocationGroupConfig]:
+ for data in self.raw.get("locationGroups", []):
+ group = LocationGroupConfig.from_dict(data)
+
+ if enabled_only and not group.enabled:
+ continue
+
+ yield group
+
+ def timeseries_groups(self, enabled_only: bool = True) -> Iterator[TimeseriesGroupConfig]:
+ for data in self.raw.get("timeseriesGroups", []):
+ group = TimeseriesGroupConfig.from_dict(data)
+
+ if enabled_only and not group.enabled:
+ continue
+
+ yield group
+
@dataclass(frozen=True)
class DownloadConfig:
@@ -398,6 +753,8 @@ def _validate_office(office: dict[str, Any]) -> None:
raise ValueError(f"Projects must be a list for office {office['id']}.")
_validate_office_property_items(office["id"], office.get("properties", []))
+ _validate_group_items("Location groups", office["id"], office.get("locationGroups", []))
+ _validate_group_items("Timeseries groups", office["id"], office.get("timeseriesGroups", []))
for project in projects:
_validate_project(office["id"], project)
@@ -424,6 +781,12 @@ def _validate_project(office_id: str, project: dict[str, Any]) -> None:
_validate_location_level_items(office_id, project_id, project.get("locationLevels", []))
_validate_rating_items(office_id, project_id, project.get("ratings", []))
_validate_property_items(office_id, project_id, project.get("properties", []))
+ _validate_literal_id_list("outlet", office_id, project_id, project.get("outlets", []))
+ _validate_literal_id_list("turbine", office_id, project_id, project.get("turbines", []))
+ _validate_literal_id_list("lock", office_id, project_id, project.get("locks", []))
+ _validate_water_user_items(office_id, project_id, project.get("waterUsers", []))
+ _validate_optional_mapping("gateChanges", office_id, project_id, project.get("gateChanges"))
+ _validate_optional_mapping("turbineChanges", office_id, project_id, project.get("turbineChanges"))
def _validate_locations(office_id: str, project_id: str, locations: Any) -> None:
@@ -552,15 +915,138 @@ def _validate_property_items(office_id: str, project_id: str, properties: Any) -
)
+def _validate_literal_id_list(kind: str, office_id: str, project_id: str, items: Any) -> None:
+ """
+ Shared validation for a plain project-level list of literal-id items with
+ no further structure - outlets, turbines, locks.
+ """
+ if not isinstance(items, list):
+ raise ValueError(f"{kind.capitalize()}s must be a list for project {office_id}.{project_id}.")
+
+ for item in items:
+ if not isinstance(item, dict):
+ raise ValueError(f"Each {kind} under project {office_id}.{project_id} must be a mapping/object.")
+
+ _validate_literal_id_item(kind, office_id, project_id, item)
+
+
+def _validate_optional_mapping(kind: str, office_id: str, project_id: str, item: Any) -> None:
+ """
+ gateChanges / turbineChanges are a single mapping per project, not a list -
+ absent entirely is fine, but if present it must be a mapping/object.
+ """
+ if item is not None and not isinstance(item, dict):
+ raise ValueError(f"{kind} must be a mapping/object for project {office_id}.{project_id}.")
+
+
+def _validate_water_user_items(office_id: str, project_id: str, water_users: Any) -> None:
+ if not isinstance(water_users, list):
+ raise ValueError(f"Water users must be a list for project {office_id}.{project_id}.")
+
+ for water_user in water_users:
+ if not isinstance(water_user, dict):
+ raise ValueError(f"Each water user under project {office_id}.{project_id} must be a mapping/object.")
+
+ if not water_user.get("id"):
+ raise ValueError(f"Each water user under project {office_id}.{project_id} must have an id.")
+
+ water_user_id = water_user["id"]
+ contracts = water_user.get("contracts", [])
+ if not isinstance(contracts, list):
+ raise ValueError(
+ f"Contracts must be a list for water user {office_id}.{project_id}.{water_user_id}."
+ )
+
+ for contract in contracts:
+ if not isinstance(contract, dict):
+ raise ValueError(
+ f"Each contract under water user {office_id}.{project_id}.{water_user_id} "
+ "must be a mapping/object."
+ )
+
+ if not contract.get("id"):
+ raise ValueError(
+ f"Each contract under water user {office_id}.{project_id}.{water_user_id} must have an id."
+ )
+
+ contract_id = contract["id"]
+ pumps = contract.get("pumps", [])
+ if not isinstance(pumps, list):
+ raise ValueError(
+ f"Pumps must be a list for contract {office_id}.{project_id}.{water_user_id}.{contract_id}."
+ )
+
+ for pump in pumps:
+ if not isinstance(pump, dict):
+ raise ValueError(
+ f"Each pump under contract {office_id}.{project_id}.{water_user_id}.{contract_id} "
+ "must be a mapping/object."
+ )
+
+ if not pump.get("id"):
+ raise ValueError(
+ f"Each pump under contract {office_id}.{project_id}.{water_user_id}.{contract_id} "
+ "must have an id."
+ )
+
+ if not pump.get("type"):
+ raise ValueError(
+ f"Each pump under contract {office_id}.{project_id}.{water_user_id}.{contract_id} "
+ "must have a type (IN, OUT, or OUT BELOW)."
+ )
+
+ accounting = contract.get("accounting")
+ _validate_optional_mapping(
+ f"accounting for contract {office_id}.{project_id}.{water_user_id}.{contract_id}",
+ office_id,
+ project_id,
+ accounting,
+ )
+
+
+def _validate_group_items(kind: str, office_id: str, groups: Any) -> None:
+ """
+ Shared validation for location groups / timeseries groups, which follow
+ the same categoryId/id/all shape as a flat (non-grouped) property item.
+ """
+ if not isinstance(groups, list):
+ raise ValueError(f"{kind} must be a list for office {office_id}.")
+
+ for group in groups:
+ if not isinstance(group, dict):
+ raise ValueError(f"Each {kind.lower()} entry under office {office_id} must be a mapping/object.")
+
+ if group.get("all") is True:
+ if not group.get("categoryId"):
+ raise ValueError(
+ f"Each category-wide {kind.lower()} entry under office {office_id} must define categoryId."
+ )
+ continue
+
+ has_id_and_category = bool(group.get("id") and group.get("categoryId"))
+ if not has_id_and_category:
+ raise ValueError(f"Each {kind.lower()} entry under office {office_id} must define categoryId and id.")
+
+
__all__ = [
"ClobConfig",
"DownloadConfig",
+ "GateChangeConfig",
"LocationLevelConfig",
"LocationConfig",
+ "LocationGroupConfig",
+ "LockConfig",
"OfficeConfig",
+ "OutletConfig",
"PropertyConfig",
"ProjectConfig",
+ "PumpConfig",
"RatingConfig",
"SettingsConfig",
"TimeseriesConfig",
+ "TimeseriesGroupConfig",
+ "TurbineChangeConfig",
+ "TurbineConfig",
+ "WaterContractConfig",
+ "WaterUserConfig",
]
diff --git a/cda-etl/src/cda_etl/gate_change.py b/cda-etl/src/cda_etl/gate_change.py
new file mode 100644
index 000000000..8b05e59d2
--- /dev/null
+++ b/cda-etl/src/cda_etl/gate_change.py
@@ -0,0 +1,145 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+from datetime import datetime
+
+import cwms
+import utils.filesystem_store as filesystem_store
+import utils.cda_errors as cda_errors
+import utils.log_util as log_util
+from config import GateChangeConfig
+
+logger = logging.getLogger(__name__)
+GATE_CHANGES_FOLDER = "GateChanges"
+
+def stage_gate_changes(
+ office_id: str,
+ project_id: str,
+ gate_changes: "GateChangeConfig | None",
+ default_start: str | None,
+ default_end: str | None,
+) -> None:
+ if gate_changes is None:
+ logger.debug("Gate changes not configured for %s in office %s; nothing to extract.", project_id, office_id)
+ return
+
+ begin = _parse_timestamp(gate_changes.start_time or default_start, "start")
+ end = _parse_timestamp(gate_changes.end_time or default_end, "end")
+
+ logger.info(
+ "Extracting gate changes for %s in office %s [%s]",
+ project_id,
+ office_id,
+ log_util.window(begin, end),
+ )
+
+ try:
+ response = cwms.api.get(
+ endpoint=f"projects/{office_id}/{project_id}/gate-changes",
+ params={
+ "begin": begin.isoformat() if begin else None,
+ "end": end.isoformat() if end else None,
+ "start-time-inclusive": True,
+ "end-time-inclusive": False,
+ "unit-system": "EN",
+ "page-size": 500,
+ },
+ api_version=1,
+ )
+ except Exception as error:
+ if not cda_errors.is_no_data(error):
+ raise
+
+ logger.debug(
+ "No gate changes for %s in office %s between %s and %s; nothing staged.",
+ project_id,
+ office_id,
+ log_util.display(begin),
+ log_util.display(end),
+ )
+ return
+
+ filesystem_store.write_json(response, office_id, GATE_CHANGES_FOLDER, project_id)
+ logger.info("Staged gate changes for %s in office %s", project_id, office_id)
+
+
+def publish_staged_gate_changes(
+ office_id: str,
+ project_id: str,
+ gate_changes: "GateChangeConfig | None",
+ default_start: str | None,
+ default_end: str | None,
+) -> None:
+ if gate_changes is None:
+ logger.debug("Gate changes not configured for %s in office %s; nothing to load.", project_id, office_id)
+ return
+
+ staged_data = filesystem_store.read_json(office_id, GATE_CHANGES_FOLDER, project_id)
+ if staged_data is None:
+ raise FileNotFoundError("No staged gate change data found.")
+
+ entries = _extract_gate_change_entries(staged_data)
+ if not entries:
+ logger.debug("No gate change records to publish for %s in office %s; nothing to publish.", project_id, office_id)
+ return
+
+ logger.info(
+ "Publishing %s for %s in office %s",
+ log_util.plural(len(entries), "gate change"),
+ project_id,
+ office_id,
+ )
+ cwms.api.post(
+ endpoint="projects/gate-changes",
+ data=entries,
+ params={"fail-if-exists": True},
+ api_version=1,
+ )
+
+
+def _extract_gate_change_entries(response: object) -> list[dict]:
+ if isinstance(response, list):
+ return [item for item in response if isinstance(item, dict)]
+
+ if isinstance(response, dict):
+ for key in ("gate-changes", "entries", "items", "values"):
+ nested = response.get(key)
+ if isinstance(nested, list):
+ return [item for item in nested if isinstance(item, dict)]
+
+ return []
+
+
+def _parse_timestamp(value: str | None, label: str) -> datetime:
+ if value is None:
+ raise ValueError(f"Missing {label} time for gate change processing.")
+
+ normalized = value.strip()
+ if normalized.lower() == "now":
+ return datetime.now()
+
+ try:
+ return datetime.fromisoformat(normalized)
+ except ValueError as exc:
+ try:
+ return datetime.strptime(normalized, "%Y-%m-%d")
+ except ValueError:
+ raise ValueError(f"Invalid {label} time '{value}'. Use ISO-8601 or YYYY-MM-DD.") from exc
+
+
+__all__ = ["publish_staged_gate_changes", "stage_gate_changes"]
diff --git a/cda-etl/src/cda_etl/location_group.py b/cda-etl/src/cda_etl/location_group.py
new file mode 100644
index 000000000..e0189ef92
--- /dev/null
+++ b/cda-etl/src/cda_etl/location_group.py
@@ -0,0 +1,337 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+import threading
+import time
+from typing import Iterable, NamedTuple
+
+import cwms
+import utils.cda_errors as cda_errors
+import utils.filesystem_store as filesystem_store
+import utils.log_util as log_util
+import utils.threading_util as threading_util
+from config import LocationGroupConfig
+
+logger = logging.getLogger(__name__)
+LOCATION_GROUPS_FOLDER = "LocationGroups"
+
+
+class _GroupRef(NamedTuple):
+ """
+ A named group plus the offices it should be fetched under.
+ """
+
+ id: str
+ group_office_id: str
+ category_office_id: str
+
+
+def _label(work_item) -> str:
+ category_id = work_item[1]
+ named = len(work_item) - 2
+
+ return f"{category_id} ({log_util.plural(named, 'location group')})" if named else f"{category_id} (all)"
+
+
+def _report_nothing_to_do(office_id: str, configured: list, phase: str) -> None:
+ if not configured:
+ logger.debug("No location groups configured for office %s; nothing to %s.", office_id, phase)
+ return
+
+ logger.warning(
+ "All %s configured for office %s are missing a category or id; nothing to %s.",
+ log_util.plural(len(configured), "location group"),
+ office_id,
+ phase,
+ )
+
+_STAGE_WRITE_LOCK = threading.Lock()
+
+
+def stage_location_groups(office_id: str, groups: Iterable[LocationGroupConfig]) -> None:
+ groups = list(groups)
+ all_category_ids = sorted({item.category_id for item in groups if item.category_id and item.all_in_category})
+ specific_refs_by_category = _group_specific_ids(office_id, groups, skip_categories=all_category_ids)
+
+ category_work_items = [[office_id, category_id] for category_id in all_category_ids]
+ specific_work_items = [
+ [office_id, category_id, *refs] for category_id, refs in specific_refs_by_category
+ ]
+
+ if not specific_work_items and not category_work_items:
+ _report_nothing_to_do(office_id, groups, "extract")
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ total = len(category_work_items) + len(specific_work_items)
+
+ if category_work_items:
+ threading_util.execute_tasks(
+ _download_all_location_groups_in_category, category_work_items, label=_label, tally=tally
+ )
+
+ if specific_work_items:
+ threading_util.execute_tasks(
+ _download_location_groups_in_category, specific_work_items, label=_label, tally=tally
+ )
+
+ log_util.outcome(
+ logger,
+ action="Staged",
+ noun="location group category",
+ total=total,
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def publish_staged_location_groups(office_id: str, groups: Iterable[LocationGroupConfig]) -> None:
+ groups = list(groups)
+ all_category_ids = sorted({item.category_id for item in groups if item.category_id and item.all_in_category})
+ specific_refs_by_category = _group_specific_ids(office_id, groups, skip_categories=all_category_ids)
+ work_items = [[office_id, category_id] for category_id in all_category_ids]
+ work_items.extend(
+ [office_id, category_id, *refs] for category_id, refs in specific_refs_by_category
+ )
+
+ if not work_items:
+ _report_nothing_to_do(office_id, groups, "load")
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_upload_location_groups_in_category, work_items, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Published",
+ noun="location group category",
+ total=len(work_items),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def _group_specific_ids(
+ office_id: str, groups: Iterable[LocationGroupConfig], skip_categories: Iterable[str]
+) -> list[tuple[str, list[_GroupRef]]]:
+ """
+ Collapses the individually named groups into one entry per category.
+ """
+ skip = set(skip_categories)
+ refs_by_category: dict[str, dict[str, _GroupRef]] = {}
+
+ for item in groups:
+ if not item.category_id or not item.id or item.all_in_category or item.category_id in skip:
+ continue
+
+ refs_by_category.setdefault(item.category_id, {})[item.id] = _GroupRef(
+ id=item.id,
+ group_office_id=item.group_office_id or office_id,
+ category_office_id=item.category_office_id or office_id,
+ )
+
+ return [
+ (
+ category_id,
+ [refs_by_category[category_id][group_id] for group_id in sorted(refs_by_category[category_id])],
+ )
+ for category_id in sorted(refs_by_category)
+ ]
+
+
+def _download_all_location_groups_in_category(work_item: list[str]) -> None:
+ office_id, category_id = work_item
+ logger.debug("Extracting all location groups for category %s in office %s", category_id, office_id)
+
+ response = cwms.get_location_groups(
+ office_id=office_id,
+ include_assigned=True,
+ location_category_like=category_id,
+ )
+
+ entries = []
+ for group_data in _as_entries(response.json):
+ if not _extract_group_id(group_data):
+ logger.warning(
+ "Skipping location group in category %s for office %s because no group id was found.",
+ category_id,
+ office_id,
+ )
+ continue
+
+ entries.append(group_data)
+
+ _write_category(office_id, category_id, _sort_entries(entries))
+ logger.info(
+ "Staged %s for category %s in office %s",
+ log_util.plural(len(entries), "location group"),
+ category_id,
+ office_id,
+ )
+
+
+def _download_location_groups_in_category(work_item: list) -> None:
+ office_id, category_id = work_item[0], work_item[1]
+ refs: list[_GroupRef] = list(work_item[2:])
+
+ logger.info(
+ "Extracting %s for category %s in office %s",
+ log_util.plural(len(refs), "location group"),
+ category_id,
+ office_id,
+ )
+
+ entries = []
+ for ref in refs:
+ response = cwms.get_location_group(
+ loc_group_id=ref.id,
+ category_id=category_id,
+ office_id=office_id,
+ group_office_id=ref.group_office_id,
+ category_office_id=ref.category_office_id,
+ )
+ entries.append(response.json)
+
+ with _STAGE_WRITE_LOCK:
+ merged = _merge_entries(_read_category(office_id, category_id), entries)
+ _write_category(office_id, category_id, merged)
+
+
+def _upload_location_groups_in_category(work_item: list) -> None:
+ office_id, category_id = work_item[0], work_item[1]
+ requested_ids = [ref.id for ref in work_item[2:]]
+
+ entries = _read_category(office_id, category_id)
+ if entries is None:
+ raise FileNotFoundError("No staged location group data found.")
+
+ entries_by_id = {group_id: entry for entry in entries if (group_id := _extract_group_id(entry))}
+
+ if requested_ids:
+ selected = [(group_id, entries_by_id[group_id]) for group_id in requested_ids if group_id in entries_by_id]
+ for group_id in requested_ids:
+ if group_id not in entries_by_id:
+ logger.warning(
+ "No staged location group data found for %s/%s in office %s.", category_id, group_id, office_id
+ )
+ else:
+ selected = list(entries_by_id.items())
+
+ if not selected:
+ raise FileNotFoundError("No staged location group data found.")
+
+ logger.info(
+ "Publishing %s for category %s in office %s",
+ log_util.plural(len(selected), "location group"),
+ category_id,
+ office_id,
+ )
+
+ failures: list[str] = []
+ for group_id, group_data in selected:
+ try:
+ _upload_one_location_group(office_id, category_id, group_id, group_data)
+ except Exception as error: # noqa: BLE001 - reported together below
+ logger.error(
+ "Failed publishing location group %s/%s for office %s. %s",
+ category_id,
+ group_id,
+ office_id,
+ error,
+ )
+ failures.append(group_id)
+
+ if cda_errors.is_connection_failure(error):
+ remaining = len(selected) - len(failures)
+ if remaining:
+ logger.error(
+ "Destination is unreachable; not attempting the remaining %s for category %s "
+ "in office %s.",
+ log_util.plural(remaining, "location group"),
+ category_id,
+ office_id,
+ )
+ break
+
+ if failures:
+ raise RuntimeError(
+ f"{len(failures)} of {len(selected)} location group item(s) failed for category {category_id}: "
+ f"{', '.join(failures)}."
+ )
+
+
+def _upload_one_location_group(office_id: str, category_id: str, group_id: str, group_data: dict) -> None:
+ logger.debug("Publishing location group %s", group_id)
+
+ try:
+ cwms.store_location_groups(group_data)
+ except cwms.api.ApiError as error:
+ if error.response.status_code != 409:
+ raise
+ cwms.delete_location_group(group_id, category_id, office_id, cascade_delete=True)
+ cwms.store_location_groups(group_data)
+
+
+def _read_category(office_id: str, category_id: str) -> list[dict] | None:
+ return filesystem_store.read_json(office_id, LOCATION_GROUPS_FOLDER, category_id)
+
+
+def _write_category(office_id: str, category_id: str, entries: list[dict]) -> None:
+ filesystem_store.write_json(entries, office_id, LOCATION_GROUPS_FOLDER, category_id)
+
+
+def _merge_entries(existing: list[dict] | None, incoming: list[dict]) -> list[dict]:
+ merged: dict[str, dict] = {}
+
+ for entry in [*(existing or []), *incoming]:
+ group_id = _extract_group_id(entry)
+ if not group_id:
+ continue
+
+ merged[group_id] = entry
+
+ return _sort_entries(merged.values())
+
+
+def _sort_entries(entries: Iterable[dict]) -> list[dict]:
+ return sorted(entries, key=lambda entry: _extract_group_id(entry) or "")
+
+
+def _as_entries(response: object) -> list[dict]:
+ if isinstance(response, list):
+ return [item for item in response if isinstance(item, dict)]
+
+ return []
+
+
+def _extract_group_id(group_data: dict) -> str | None:
+ group_id = group_data.get("id")
+ if isinstance(group_id, str) and group_id.strip():
+ return group_id
+
+ fallback = group_data.get("location-group-id")
+ if isinstance(fallback, str) and fallback.strip():
+ return fallback
+
+ return None
+
+
+__all__ = ["LOCATION_GROUPS_FOLDER", "publish_staged_location_groups", "stage_location_groups"]
diff --git a/cda-etl/src/cda_etl/lock.py b/cda-etl/src/cda_etl/lock.py
new file mode 100644
index 000000000..1074f8f17
--- /dev/null
+++ b/cda-etl/src/cda_etl/lock.py
@@ -0,0 +1,130 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+import time
+from typing import Iterable
+from urllib.parse import quote
+
+import cwms
+import utils.filesystem_store as filesystem_store
+import utils.log_util as log_util
+import utils.threading_util as threading_util
+from config import LockConfig
+
+logger = logging.getLogger(__name__)
+LOCKS_FOLDER = "Locks"
+
+def _label(work_item) -> str:
+ return f"{work_item[0]}.{work_item[1]}"
+
+
+def _collect(office_id: str, locks: list, phase: str) -> list[list[str]]:
+ lock_ids = [[office_id, item.id] for item in locks if item.id]
+ invalid = len(locks) - len(lock_ids)
+
+ if invalid:
+ logger.warning(
+ "Skipped %s with no id for office %s. Expected '[office_id].[lock_id]'.",
+ log_util.plural(invalid, "lock"),
+ office_id,
+ )
+
+ if not lock_ids and not locks:
+ logger.debug("No locks configured for office %s; nothing to %s.", office_id, phase)
+
+ return lock_ids
+
+
+def stage_locks(office_id: str, locks: Iterable[LockConfig]) -> None:
+ locks = list(locks)
+ lock_ids = _collect(office_id, locks, "extract")
+
+ if not lock_ids:
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_download_one_lock, lock_ids, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Staged",
+ noun="lock",
+ total=len(lock_ids),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def publish_staged_locks(office_id: str, locks: Iterable[LockConfig]) -> None:
+ locks = list(locks)
+ lock_ids = _collect(office_id, locks, "load")
+
+ if not lock_ids:
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_upload_one_lock, lock_ids, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Published",
+ noun="lock",
+ total=len(lock_ids),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def _download_one_lock(lock):
+ office_id = lock[0]
+ lock_id = lock[1]
+
+ logger.info("Extracting lock %s %s", office_id, lock_id)
+ lock_data = cwms.api.get(
+ endpoint=f"projects/locks/{_encode_path_segment(lock_id)}",
+ params={"office": office_id},
+ api_version=1,
+ )
+ filesystem_store.write_json(lock_data, office_id, LOCKS_FOLDER, lock_id)
+
+
+def _upload_one_lock(lock):
+ office_id = lock[0]
+ lock_id = lock[1]
+ logger.info("Publishing lock %s %s", office_id, lock_id)
+ lock_data = filesystem_store.read_json(office_id, LOCKS_FOLDER, lock_id)
+ if lock_data is None:
+ raise FileNotFoundError(
+ "No staged lock data found."
+ )
+
+ cwms.api.post(
+ endpoint="projects/locks",
+ data=lock_data,
+ params={"fail-if-exists": False},
+ api_version=1,
+ )
+
+
+def _encode_path_segment(value: str) -> str:
+ return quote(value, safe="")
+
+
+__all__ = ["publish_staged_locks", "stage_locks"]
diff --git a/cda-etl/src/cda_etl/main.py b/cda-etl/src/cda_etl/main.py
index d46eb7f1c..1c7822047 100644
--- a/cda-etl/src/cda_etl/main.py
+++ b/cda-etl/src/cda_etl/main.py
@@ -20,12 +20,21 @@
import os
import time
import location
+import location_group
import location_level
+import lock
+import gate_change
+import outlet
+import outlet_rating
import project
import property
import rating
import timeseries
+import timeseries_group
+import turbine
import clob
+import water_contract
+import water_user
import utils.cwms_compat
import utils.log_util as log_util
import utils.threading_util
@@ -94,9 +103,79 @@ def _project_inputs(project_config: ProjectConfig) -> dict[str, list]:
"location level": list(project_config.location_levels(enabled_only=True)),
"rating": list(project_config.ratings(enabled_only=True)),
"property": list(project_config.properties(enabled_only=True)),
+ "outlet": list(project_config.outlets(enabled_only=True)),
+ "turbine": list(project_config.turbines(enabled_only=True)),
+ "lock": list(project_config.locks(enabled_only=True)),
+ "water user": list(project_config.water_users(enabled_only=True)),
+ "gate changes": project_config.gate_changes(enabled_only=True),
+ "turbine changes": project_config.turbine_changes(enabled_only=True),
}
+def _stage_outlet_rating_dependencies(
+ project_config: ProjectConfig, config: DownloadConfig, outlets: list
+) -> None:
+ """
+ An outlet's effective rating spec is derived by CDA from a "Rating"
+ location group's shared-loc-alias-id, not stored on the outlet - see
+ outlet_rating.py. Staging outlets alone would miss that group and rating,
+ so pull them in here from the outlet data just staged.
+ """
+ rating_location_groups = outlet_rating.derive_rating_location_groups(project_config.office_id, outlets)
+ if not rating_location_groups:
+ return
+
+ logger.info(
+ "Staging %s for project %s",
+ log_util.plural(len(rating_location_groups), "outlet rating location group"),
+ project_config.id,
+ )
+ location_group.stage_location_groups(project_config.office_id, rating_location_groups)
+
+ derived_ratings = outlet_rating.derive_ratings_from_location_groups(
+ project_config.office_id, rating_location_groups
+ )
+ if not derived_ratings:
+ return
+
+ logger.info(
+ "Staging %s for project %s",
+ log_util.plural(len(derived_ratings), "outlet rating"),
+ project_config.id,
+ )
+ rating.stage_ratings(
+ project_config.office_id, derived_ratings, config.settings.start_time, config.settings.end_time
+ )
+
+
+def _publish_outlet_rating_dependencies(
+ project_config: ProjectConfig, config: DownloadConfig, outlets: list
+) -> None:
+ rating_location_groups = outlet_rating.derive_rating_location_groups(project_config.office_id, outlets)
+ if not rating_location_groups:
+ return
+
+ derived_ratings = outlet_rating.derive_ratings_from_location_groups(
+ project_config.office_id, rating_location_groups
+ )
+ if derived_ratings:
+ logger.info(
+ "Publishing %s for project %s",
+ log_util.plural(len(derived_ratings), "outlet rating"),
+ project_config.id,
+ )
+ rating.publish_staged_ratings(
+ project_config.office_id, derived_ratings, config.settings.start_time, config.settings.end_time
+ )
+
+ logger.info(
+ "Publishing %s for project %s",
+ log_util.plural(len(rating_location_groups), "outlet rating location group"),
+ project_config.id,
+ )
+ location_group.publish_staged_location_groups(project_config.office_id, rating_location_groups)
+
+
def _stage_project_data(project_config: ProjectConfig, config: DownloadConfig) -> None:
logger.info(f"Staging project {project_config.id}")
@@ -127,21 +206,63 @@ def _stage_project_data(project_config: ProjectConfig, config: DownloadConfig) -
config.settings.end_time,
)
property.stage_properties(project_config.office_id, inputs["property"])
+ logger.info("Staging outlets for project %s", project_config.id)
+ outlet.stage_outlets(project_config.office_id, inputs["outlet"])
+ _stage_outlet_rating_dependencies(project_config, config, inputs["outlet"])
+ logger.info("Staging turbines for project %s", project_config.id)
+ turbine.stage_turbines(project_config.office_id, inputs["turbine"])
+ turbine.stage_turbine_changes(
+ project_config.office_id,
+ project_config.id,
+ inputs["turbine changes"],
+ config.settings.start_time,
+ config.settings.end_time,
+ )
+ logger.info("Staging locks for project %s", project_config.id)
+ lock.stage_locks(project_config.office_id, inputs["lock"])
+ gate_change.stage_gate_changes(
+ project_config.office_id,
+ project_config.id,
+ inputs["gate changes"],
+ config.settings.start_time,
+ config.settings.end_time,
+ )
+ logger.info("Staging water users for project %s", project_config.id)
+ water_user.stage_water_users(project_config.office_id, project_config.id, inputs["water user"])
+ water_contract.stage_water_contracts(
+ project_config.office_id,
+ project_config.id,
+ inputs["water user"],
+ config.settings.start_time,
+ config.settings.end_time,
+ )
logger.info("Completed staging for project %s", project_config.id)
def _stage_office_data(office_config: OfficeConfig) -> None:
office_properties = list(office_config.properties(enabled_only=True))
+ location_groups = list(office_config.location_groups(enabled_only=True))
+ timeseries_groups = list(office_config.timeseries_groups(enabled_only=True))
logger.info("Staging office properties for %s", office_config.id)
property.stage_properties(office_config.id, office_properties)
+ logger.info("Staging location groups for %s", office_config.id)
+ location_group.stage_location_groups(office_config.id, location_groups)
+ logger.info("Staging timeseries groups for %s", office_config.id)
+ timeseries_group.stage_timeseries_groups(office_config.id, timeseries_groups)
def _publish_office_data(office_config: OfficeConfig) -> None:
office_properties = list(office_config.properties(enabled_only=True))
+ location_groups = list(office_config.location_groups(enabled_only=True))
+ timeseries_groups = list(office_config.timeseries_groups(enabled_only=True))
logger.info("Publishing office properties for %s", office_config.id)
property.publish_staged_properties(office_config.id, office_properties)
+ logger.info("Publishing location groups for %s", office_config.id)
+ location_group.publish_staged_location_groups(office_config.id, location_groups)
+ logger.info("Publishing timeseries groups for %s", office_config.id)
+ timeseries_group.publish_staged_timeseries_groups(office_config.id, timeseries_groups)
def _log_startup_configuration(config: DownloadConfig, session_manager: SessionManager) -> None:
@@ -186,6 +307,36 @@ def _publish_project_data(project_config: ProjectConfig, config: DownloadConfig)
config.settings.end_time,
)
property.publish_staged_properties(project_config.office_id, inputs["property"])
+ logger.info("Publishing outlets for project %s", project_config.id)
+ outlet.publish_staged_outlets(project_config.office_id, inputs["outlet"])
+ _publish_outlet_rating_dependencies(project_config, config, inputs["outlet"])
+ logger.info("Publishing turbines for project %s", project_config.id)
+ turbine.publish_staged_turbines(project_config.office_id, inputs["turbine"])
+ turbine.publish_staged_turbine_changes(
+ project_config.office_id,
+ project_config.id,
+ inputs["turbine changes"],
+ config.settings.start_time,
+ config.settings.end_time,
+ )
+ logger.info("Publishing locks for project %s", project_config.id)
+ lock.publish_staged_locks(project_config.office_id, inputs["lock"])
+ gate_change.publish_staged_gate_changes(
+ project_config.office_id,
+ project_config.id,
+ inputs["gate changes"],
+ config.settings.start_time,
+ config.settings.end_time,
+ )
+ logger.info("Publishing water users for project %s", project_config.id)
+ water_user.publish_staged_water_users(project_config.office_id, project_config.id, inputs["water user"])
+ water_contract.publish_staged_water_contracts(
+ project_config.office_id,
+ project_config.id,
+ inputs["water user"],
+ config.settings.start_time,
+ config.settings.end_time,
+ )
logger.info("Completed publish for project %s", project_config.id)
@@ -194,6 +345,7 @@ def _initialize_runtime():
config = DownloadConfig.from_yaml(config_path)
session_manager = SessionManager.from_env()
utils.threading_util.init_executor(config.settings.max_threads)
+ utils.cwms_compat.disable_retry_on_missing_data()
storage_root = _read_env("ETL_DATA_PATH", config.settings.path)
utils.filesystem_store.set_storage_root(storage_root)
diff --git a/cda-etl/src/cda_etl/outlet.py b/cda-etl/src/cda_etl/outlet.py
new file mode 100644
index 000000000..bfddb9ed5
--- /dev/null
+++ b/cda-etl/src/cda_etl/outlet.py
@@ -0,0 +1,117 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+import time
+from typing import Iterable
+
+import cwms
+import utils.filesystem_store as filesystem_store
+import utils.log_util as log_util
+import utils.threading_util as threading_util
+from config import OutletConfig
+
+logger = logging.getLogger(__name__)
+OUTLETS_FOLDER = "Outlets"
+
+
+def _label(work_item) -> str:
+ return f"{work_item[0]}.{work_item[1]}"
+
+
+def _collect(office_id: str, outlets: list, phase: str) -> list[list[str]]:
+ outlet_ids = [[office_id, item.id] for item in outlets if item.id]
+ invalid = len(outlets) - len(outlet_ids)
+
+ if invalid:
+ logger.warning(
+ "Skipped %s with no id for office %s. Expected '[office_id].[outlet_id]'.",
+ log_util.plural(invalid, "outlet"),
+ office_id,
+ )
+
+ if not outlet_ids and not outlets:
+ logger.debug("No outlets configured for office %s; nothing to %s.", office_id, phase)
+
+ return outlet_ids
+
+
+def stage_outlets(office_id: str, outlets: Iterable[OutletConfig]) -> None:
+ outlets = list(outlets)
+ outlet_ids = _collect(office_id, outlets, "extract")
+
+ if not outlet_ids:
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_download_one_outlet, outlet_ids, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Staged",
+ noun="outlet",
+ total=len(outlet_ids),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def publish_staged_outlets(office_id: str, outlets: Iterable[OutletConfig]) -> None:
+ outlets = list(outlets)
+ outlet_ids = _collect(office_id, outlets, "load")
+
+ if not outlet_ids:
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_upload_one_outlet, outlet_ids, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Published",
+ noun="outlet",
+ total=len(outlet_ids),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def _download_one_outlet(outlet):
+ office_id = outlet[0]
+ outlet_id = outlet[1]
+
+ logger.info("Extracting outlet %s %s", office_id, outlet_id)
+ outlet_data = cwms.get_outlet(office_id, outlet_id).json
+ filesystem_store.write_json(outlet_data, office_id, OUTLETS_FOLDER, outlet_id)
+
+
+def _upload_one_outlet(outlet):
+ office_id = outlet[0]
+ outlet_id = outlet[1]
+ logger.info("Publishing outlet %s %s", office_id, outlet_id)
+ outlet_data = filesystem_store.read_json(office_id, OUTLETS_FOLDER, outlet_id)
+ if outlet_data is None:
+ raise FileNotFoundError(
+ "No staged outlet data found."
+ )
+
+ cwms.api.post("projects/outlets", outlet_data, {"fail-if-exists": False}, api_version=1)
+
+
+__all__ = ["OUTLETS_FOLDER", "publish_staged_outlets", "stage_outlets"]
diff --git a/cda-etl/src/cda_etl/outlet_rating.py b/cda-etl/src/cda_etl/outlet_rating.py
new file mode 100644
index 000000000..cf091bea1
--- /dev/null
+++ b/cda-etl/src/cda_etl/outlet_rating.py
@@ -0,0 +1,100 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+"""
+An outlet's effective rating spec is not stored on the outlet itself - CDA
+derives it from a "Rating"-category location group: the outlet carries a
+rating-group-id, and that location group's shared-loc-alias-id is the rating
+spec id. Both have to exist on the destination before gate changes (which
+report against that derived rating) can be stored, so this module discovers
+them from already-staged outlet/location-group data rather than requiring
+them to be hand-listed in config.
+"""
+import logging
+from typing import Iterable
+
+import location_group
+import outlet
+import utils.filesystem_store as filesystem_store
+from config import LocationGroupConfig, OutletConfig, RatingConfig
+
+logger = logging.getLogger(__name__)
+
+RATING_CATEGORY = "Rating"
+
+
+def derive_rating_location_groups(office_id: str, outlets: Iterable[OutletConfig]) -> list[LocationGroupConfig]:
+ """
+ Reads each outlet's staged data for its rating-group-id and returns one
+ ad-hoc LocationGroupConfig (category "Rating") per distinct group found.
+ Outlets with no rating association, or with no staged data yet, are
+ skipped.
+ """
+ group_ids: dict[str, None] = {}
+
+ for item in outlets:
+ if not item.id:
+ continue
+
+ outlet_data = filesystem_store.read_json(office_id, outlet.OUTLETS_FOLDER, item.id)
+ if not isinstance(outlet_data, dict):
+ continue
+
+ group_ref = outlet_data.get("rating-group-id")
+ if not isinstance(group_ref, dict):
+ continue
+
+ group_id = group_ref.get("name")
+ if isinstance(group_id, str) and group_id.strip():
+ group_ids.setdefault(group_id, None)
+
+ return [
+ LocationGroupConfig.from_dict({"categoryId": RATING_CATEGORY, "id": group_id})
+ for group_id in group_ids
+ ]
+
+
+def derive_ratings_from_location_groups(
+ office_id: str, rating_location_groups: Iterable[LocationGroupConfig]
+) -> list[RatingConfig]:
+ """
+ Reads the staged "Rating" category file and returns one ad-hoc
+ RatingConfig per distinct shared-loc-alias-id found on the requested
+ groups. Groups with no alias set yet (or not staged yet) contribute
+ nothing.
+ """
+ requested_ids = {group.id for group in rating_location_groups if group.category_id == RATING_CATEGORY and group.id}
+ if not requested_ids:
+ return []
+
+ staged_groups = filesystem_store.read_json(office_id, location_group.LOCATION_GROUPS_FOLDER, RATING_CATEGORY)
+ if not isinstance(staged_groups, list):
+ return []
+
+ rating_ids: dict[str, None] = {}
+ for group_data in staged_groups:
+ if not isinstance(group_data, dict) or group_data.get("id") not in requested_ids:
+ continue
+
+ rating_id = group_data.get("shared-loc-alias-id")
+ if isinstance(rating_id, str) and rating_id.strip():
+ rating_ids.setdefault(rating_id, None)
+
+ return [RatingConfig.from_dict({"id": rating_id, "por": True}) for rating_id in rating_ids]
+
+
+__all__ = ["RATING_CATEGORY", "derive_rating_location_groups", "derive_ratings_from_location_groups"]
diff --git a/cda-etl/src/cda_etl/property.py b/cda-etl/src/cda_etl/property.py
index 86631936c..9eb05beae 100644
--- a/cda-etl/src/cda_etl/property.py
+++ b/cda-etl/src/cda_etl/property.py
@@ -22,6 +22,7 @@
from urllib.parse import quote
import cwms
+import utils.cda_errors as cda_errors
import utils.filesystem_store as filesystem_store
import utils.log_util as log_util
import utils.threading_util as threading_util
@@ -251,10 +252,29 @@ def _upload_properties_in_category(work_item: list[str]) -> None:
office_id,
error,
)
- failures.append(f"{property_name}: {error}")
+ failures.append(property_name)
+
+ # A refused connection means the destination is down, not that this
+ # one property was rejected - every property still queued behind it
+ # would fail identically. Stop here instead of repeating the same
+ # connection error once per remaining property.
+ if cda_errors.is_connection_failure(error):
+ remaining = len(selected) - len(failures)
+ if remaining:
+ logger.error(
+ "Destination is unreachable; not attempting the remaining %s for category %s "
+ "in office %s.",
+ log_util.plural(remaining, "property"),
+ category_id,
+ office_id,
+ )
+ break
if failures:
- raise RuntimeError(f"{len(failures)} of {len(selected)} property item(s) failed. {'; '.join(failures)}")
+ raise RuntimeError(
+ f"{len(failures)} of {len(selected)} property item(s) failed for category {category_id}: "
+ f"{', '.join(failures)}."
+ )
def _upload_one_property(property_name: str, property_data: dict) -> None:
diff --git a/cda-etl/src/cda_etl/pump.py b/cda-etl/src/cda_etl/pump.py
new file mode 100644
index 000000000..c2220c083
--- /dev/null
+++ b/cda-etl/src/cda_etl/pump.py
@@ -0,0 +1,94 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+"""
+Pumps have no independent CDA resource of their own. A pump association
+(pump-in / pump-out / pump-out-below) is only ever a field on a water
+contract - "PumpInLocation", "PumpOutLocation", "PumpOutBelowLocation" - and
+CDA's only pump-specific endpoint is WaterPumpDisassociateController, a DELETE
+that removes one of those associations from a contract.
+"""
+import logging
+from urllib.parse import quote
+
+import cwms
+
+logger = logging.getLogger(__name__)
+
+
+def _encode_path_segment(value: str) -> str:
+ return quote(value, safe="")
+
+
+def disassociate_pump(
+ office_id: str,
+ project_id: str,
+ water_user_id: str,
+ contract_id: str,
+ pump_id: str,
+ pump_type: str,
+ delete_accounting: bool = False,
+) -> None:
+ """
+ Removes a pump association (IN / OUT / "OUT BELOW") from a water contract
+ on the destination CDA instance.
+ """
+ logger.info(
+ "Disassociating pump %s (%s) from contract %s/%s for project %s in office %s",
+ pump_id,
+ pump_type,
+ water_user_id,
+ contract_id,
+ project_id,
+ office_id,
+ )
+
+ endpoint = (
+ f"projects/{office_id}/{project_id}/water-user/{_encode_path_segment(water_user_id)}"
+ f"/contracts/{_encode_path_segment(contract_id)}/pumps/{_encode_path_segment(pump_id)}"
+ )
+ cwms.api.delete(
+ endpoint=endpoint,
+ params={"pump-type": pump_type, "delete-accounting": delete_accounting},
+ api_version=1,
+ )
+
+
+def extract_pump_associations(contract_data: dict) -> list[dict]:
+ """
+ Pulls whatever pump-in/pump-out/pump-out-below location associations are
+ present on a staged contract's own JSON, for reporting. There is nothing
+ to stage separately - this just reads what stage_water_contracts already
+ wrote as part of the contract record.
+ """
+ if not isinstance(contract_data, dict):
+ return []
+
+ associations = []
+ for key, pump_type in (
+ ("pump-in-location", "IN"),
+ ("pump-out-location", "OUT"),
+ ("pump-out-below-location", "OUT BELOW"),
+ ):
+ location = contract_data.get(key)
+ if location:
+ associations.append({"type": pump_type, "location": location})
+
+ return associations
+
+
+__all__ = ["disassociate_pump", "extract_pump_associations"]
diff --git a/cda-etl/src/cda_etl/rating.py b/cda-etl/src/cda_etl/rating.py
index e1a3e758a..1002c138c 100644
--- a/cda-etl/src/cda_etl/rating.py
+++ b/cda-etl/src/cda_etl/rating.py
@@ -173,7 +173,7 @@ def _download_one_rating(work_item: list[object]) -> None:
return
- filesystem_store.write_json(_xml_to_json_payload(rating_xml), office_id, RATINGS_FOLDER, f"{rating_id}.por")
+ filesystem_store.write_xml(_xml_text(rating_xml), office_id, RATINGS_FOLDER, rating_id)
return
logger.info(
@@ -193,35 +193,31 @@ def _download_one_rating(work_item: list[object]) -> None:
return
- filesystem_store.write_json(_xml_to_json_payload(rating_xml), office_id, RATINGS_FOLDER, rating_id)
+ filesystem_store.write_xml(_xml_text(rating_xml), office_id, RATINGS_FOLDER, rating_id)
def _upload_one_rating(work_item: list[object]) -> None:
office_id = work_item[0]
rating_id = work_item[1]
- por = work_item[4]
-
- staged_data = filesystem_store.read_json(
- office_id,
- RATINGS_FOLDER,
- f"{rating_id}.por" if por else rating_id,
- )
- if staged_data is None:
+ rating_xml = filesystem_store.read_xml(office_id, RATINGS_FOLDER, rating_id)
+ if not rating_xml:
raise FileNotFoundError(
"No staged rating data found."
)
- rating_xml = staged_data.get("xml") if isinstance(staged_data, dict) else None
- if not rating_xml:
- raise ValueError(f"Staged rating data for {office_id}.{rating_id} is missing XML payload.")
- cwms.store_rating(rating_xml, store_template=True)
+ cwms.api.post(
+ "ratings",
+ rating_xml,
+ {"store-template": True, "fail-if-exists": False},
+ api_version=102,
+ )
-def _xml_to_json_payload(xml_value: Any) -> dict[str, str]:
+def _xml_text(xml_value: Any) -> str:
if isinstance(xml_value, bytes):
- xml_value = xml_value.decode("utf-8")
+ return xml_value.decode("utf-8")
- return {"xml": str(xml_value)}
+ return str(xml_value)
def _build_rating_work_items(
diff --git a/cda-etl/src/cda_etl/timeseries_group.py b/cda-etl/src/cda_etl/timeseries_group.py
new file mode 100644
index 000000000..d171a47ac
--- /dev/null
+++ b/cda-etl/src/cda_etl/timeseries_group.py
@@ -0,0 +1,346 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+import threading
+import time
+from typing import Iterable, NamedTuple
+
+import cwms
+import utils.cda_errors as cda_errors
+import utils.filesystem_store as filesystem_store
+import utils.log_util as log_util
+import utils.threading_util as threading_util
+from config import TimeseriesGroupConfig
+
+logger = logging.getLogger(__name__)
+TIMESERIES_GROUPS_FOLDER = "TimeseriesGroups"
+
+
+class _GroupRef(NamedTuple):
+ """
+ A named group plus the offices it should be fetched under.
+ """
+
+ id: str
+ group_office_id: str
+ category_office_id: str
+
+
+def _label(work_item) -> str:
+ category_id = work_item[1]
+ named = len(work_item) - 2
+
+ return f"{category_id} ({log_util.plural(named, 'timeseries group')})" if named else f"{category_id} (all)"
+
+
+def _report_nothing_to_do(office_id: str, configured: list, phase: str) -> None:
+ if not configured:
+ logger.debug("No timeseries groups configured for office %s; nothing to %s.", office_id, phase)
+ return
+
+ logger.warning(
+ "All %s configured for office %s are missing a category or id; nothing to %s.",
+ log_util.plural(len(configured), "timeseries group"),
+ office_id,
+ phase,
+ )
+
+_STAGE_WRITE_LOCK = threading.Lock()
+
+
+def stage_timeseries_groups(office_id: str, groups: Iterable[TimeseriesGroupConfig]) -> None:
+ groups = list(groups)
+ all_category_ids = sorted({item.category_id for item in groups if item.category_id and item.all_in_category})
+ specific_refs_by_category = _group_specific_ids(office_id, groups, skip_categories=all_category_ids)
+
+ category_work_items = [[office_id, category_id] for category_id in all_category_ids]
+ specific_work_items = [
+ [office_id, category_id, *refs] for category_id, refs in specific_refs_by_category
+ ]
+
+ if not specific_work_items and not category_work_items:
+ _report_nothing_to_do(office_id, groups, "extract")
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ total = len(category_work_items) + len(specific_work_items)
+
+ if category_work_items:
+ threading_util.execute_tasks(
+ _download_all_timeseries_groups_in_category, category_work_items, label=_label, tally=tally
+ )
+
+ if specific_work_items:
+ threading_util.execute_tasks(
+ _download_timeseries_groups_in_category, specific_work_items, label=_label, tally=tally
+ )
+
+ log_util.outcome(
+ logger,
+ action="Staged",
+ noun="timeseries group category",
+ total=total,
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def publish_staged_timeseries_groups(office_id: str, groups: Iterable[TimeseriesGroupConfig]) -> None:
+ groups = list(groups)
+ all_category_ids = sorted({item.category_id for item in groups if item.category_id and item.all_in_category})
+ specific_refs_by_category = _group_specific_ids(office_id, groups, skip_categories=all_category_ids)
+ work_items = [[office_id, category_id] for category_id in all_category_ids]
+ work_items.extend(
+ [office_id, category_id, *refs] for category_id, refs in specific_refs_by_category
+ )
+
+ if not work_items:
+ _report_nothing_to_do(office_id, groups, "load")
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_upload_timeseries_groups_in_category, work_items, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Published",
+ noun="timeseries group category",
+ total=len(work_items),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def _group_specific_ids(
+ office_id: str, groups: Iterable[TimeseriesGroupConfig], skip_categories: Iterable[str]
+) -> list[tuple[str, list[_GroupRef]]]:
+ """
+ Collapses the individually named groups into one entry per category.
+ """
+ skip = set(skip_categories)
+ refs_by_category: dict[str, dict[str, _GroupRef]] = {}
+
+ for item in groups:
+ if not item.category_id or not item.id or item.all_in_category or item.category_id in skip:
+ continue
+
+ refs_by_category.setdefault(item.category_id, {})[item.id] = _GroupRef(
+ id=item.id,
+ group_office_id=item.group_office_id or office_id,
+ category_office_id=item.category_office_id or office_id,
+ )
+
+ return [
+ (
+ category_id,
+ [refs_by_category[category_id][group_id] for group_id in sorted(refs_by_category[category_id])],
+ )
+ for category_id in sorted(refs_by_category)
+ ]
+
+
+def _download_all_timeseries_groups_in_category(work_item: list[str]) -> None:
+ office_id, category_id = work_item
+ logger.debug("Extracting all timeseries groups for category %s in office %s", category_id, office_id)
+
+ response = cwms.get_timeseries_groups(
+ office_id=office_id,
+ include_assigned=True,
+ timeseries_category_like=category_id,
+ )
+
+ entries = []
+ for group_data in _as_entries(response.json):
+ if not _extract_group_id(group_data):
+ logger.warning(
+ "Skipping timeseries group in category %s for office %s because no group id was found.",
+ category_id,
+ office_id,
+ )
+ continue
+
+ entries.append(group_data)
+
+ _write_category(office_id, category_id, _sort_entries(entries))
+ logger.info(
+ "Staged %s for category %s in office %s",
+ log_util.plural(len(entries), "timeseries group"),
+ category_id,
+ office_id,
+ )
+
+
+def _download_timeseries_groups_in_category(work_item: list) -> None:
+ office_id, category_id = work_item[0], work_item[1]
+ refs: list[_GroupRef] = list(work_item[2:])
+
+ logger.info(
+ "Extracting %s for category %s in office %s",
+ log_util.plural(len(refs), "timeseries group"),
+ category_id,
+ office_id,
+ )
+
+ entries = []
+ for ref in refs:
+ response = cwms.get_timeseries_group(
+ group_id=ref.id,
+ category_id=category_id,
+ office_id=office_id,
+ group_office_id=ref.group_office_id,
+ category_office_id=ref.category_office_id,
+ )
+ entries.append(response.json)
+
+ with _STAGE_WRITE_LOCK:
+ merged = _merge_entries(_read_category(office_id, category_id), entries)
+ _write_category(office_id, category_id, merged)
+
+
+def _upload_timeseries_groups_in_category(work_item: list) -> None:
+ office_id, category_id = work_item[0], work_item[1]
+ requested_ids = [ref.id for ref in work_item[2:]]
+
+ entries = _read_category(office_id, category_id)
+ if entries is None:
+ raise FileNotFoundError("No staged timeseries group data found.")
+
+ entries_by_id = {group_id: entry for entry in entries if (group_id := _extract_group_id(entry))}
+
+ if requested_ids:
+ selected = [(group_id, entries_by_id[group_id]) for group_id in requested_ids if group_id in entries_by_id]
+ for group_id in requested_ids:
+ if group_id not in entries_by_id:
+ logger.warning(
+ "No staged timeseries group data found for %s/%s in office %s.", category_id, group_id, office_id
+ )
+ else:
+ selected = list(entries_by_id.items())
+
+ if not selected:
+ raise FileNotFoundError("No staged timeseries group data found.")
+
+ logger.info(
+ "Publishing %s for category %s in office %s",
+ log_util.plural(len(selected), "timeseries group"),
+ category_id,
+ office_id,
+ )
+
+ failures: list[str] = []
+ for group_id, group_data in selected:
+ try:
+ _upload_one_timeseries_group(office_id, group_id, group_data)
+ except Exception as error: # noqa: BLE001 - reported together below
+ logger.error(
+ "Failed publishing timeseries group %s/%s for office %s. %s",
+ category_id,
+ group_id,
+ office_id,
+ error,
+ )
+ failures.append(group_id)
+
+ # A refused connection means the destination is down, not that this
+ # one group was rejected - every group still queued behind it would
+ # fail identically. Stop here instead of repeating the same
+ # connection error once per remaining group.
+ if cda_errors.is_connection_failure(error):
+ remaining = len(selected) - len(failures)
+ if remaining:
+ logger.error(
+ "Destination is unreachable; not attempting the remaining %s for category %s "
+ "in office %s.",
+ log_util.plural(remaining, "timeseries group"),
+ category_id,
+ office_id,
+ )
+ break
+
+ if failures:
+ raise RuntimeError(
+ f"{len(failures)} of {len(selected)} timeseries group item(s) failed for category {category_id}: "
+ f"{', '.join(failures)}."
+ )
+
+
+def _upload_one_timeseries_group(office_id: str, group_id: str, group_data: dict) -> None:
+ logger.debug("Publishing timeseries group %s", group_id)
+
+ try:
+ cwms.store_timeseries_groups(group_data, fail_if_exists=True)
+ except cwms.api.ApiError as error:
+ if error.response.status_code != 409:
+ raise
+
+ cwms.update_timeseries_groups(
+ data=group_data,
+ group_id=group_id,
+ office_id=office_id,
+ replace_assigned_ts=True,
+ )
+
+
+def _read_category(office_id: str, category_id: str) -> list[dict] | None:
+ return filesystem_store.read_json(office_id, TIMESERIES_GROUPS_FOLDER, category_id)
+
+
+def _write_category(office_id: str, category_id: str, entries: list[dict]) -> None:
+ filesystem_store.write_json(entries, office_id, TIMESERIES_GROUPS_FOLDER, category_id)
+
+
+def _merge_entries(existing: list[dict] | None, incoming: list[dict]) -> list[dict]:
+ merged: dict[str, dict] = {}
+
+ for entry in [*(existing or []), *incoming]:
+ group_id = _extract_group_id(entry)
+ if not group_id:
+ continue
+
+ merged[group_id] = entry
+
+ return _sort_entries(merged.values())
+
+
+def _sort_entries(entries: Iterable[dict]) -> list[dict]:
+ return sorted(entries, key=lambda entry: _extract_group_id(entry) or "")
+
+
+def _as_entries(response: object) -> list[dict]:
+ if isinstance(response, list):
+ return [item for item in response if isinstance(item, dict)]
+
+ return []
+
+
+def _extract_group_id(group_data: dict) -> str | None:
+ group_id = group_data.get("id")
+ if isinstance(group_id, str) and group_id.strip():
+ return group_id
+
+ fallback = group_data.get("timeseries-group-id")
+ if isinstance(fallback, str) and fallback.strip():
+ return fallback
+
+ return None
+
+
+__all__ = ["publish_staged_timeseries_groups", "stage_timeseries_groups"]
diff --git a/cda-etl/src/cda_etl/turbine.py b/cda-etl/src/cda_etl/turbine.py
new file mode 100644
index 000000000..3310b5339
--- /dev/null
+++ b/cda-etl/src/cda_etl/turbine.py
@@ -0,0 +1,241 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+import time
+from datetime import datetime
+from typing import Iterable
+
+import cwms
+import utils.filesystem_store as filesystem_store
+import utils.cda_errors as cda_errors
+import utils.log_util as log_util
+import utils.threading_util as threading_util
+from config import TurbineChangeConfig, TurbineConfig
+
+logger = logging.getLogger(__name__)
+TURBINES_FOLDER = "Turbines"
+TURBINE_CHANGES_FOLDER = "TurbineChanges"
+_TURBINE_CHANGE_LIST_KEYS = ("turbine-changes", "changes", "items", "values")
+
+
+def _label(work_item) -> str:
+ return f"{work_item[0]}.{work_item[1]}"
+
+
+def _collect(office_id: str, turbines: list, phase: str) -> list[list[str]]:
+ turbine_ids = [[office_id, item.id] for item in turbines if item.id]
+ invalid = len(turbines) - len(turbine_ids)
+
+ if invalid:
+ logger.warning(
+ "Skipped %s with no id for office %s. Expected '[office_id].[turbine_id]'.",
+ log_util.plural(invalid, "turbine"),
+ office_id,
+ )
+
+ if not turbine_ids and not turbines:
+ logger.debug("No turbines configured for office %s; nothing to %s.", office_id, phase)
+
+ return turbine_ids
+
+
+def stage_turbines(office_id: str, turbines: Iterable[TurbineConfig]) -> None:
+ turbines = list(turbines)
+ turbine_ids = _collect(office_id, turbines, "extract")
+
+ if not turbine_ids:
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_download_one_turbine, turbine_ids, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Staged",
+ noun="turbine",
+ total=len(turbine_ids),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def publish_staged_turbines(office_id: str, turbines: Iterable[TurbineConfig]) -> None:
+ turbines = list(turbines)
+ turbine_ids = _collect(office_id, turbines, "load")
+
+ if not turbine_ids:
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_upload_one_turbine, turbine_ids, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Published",
+ noun="turbine",
+ total=len(turbine_ids),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def _download_one_turbine(turbine):
+ office_id = turbine[0]
+ turbine_id = turbine[1]
+
+ logger.info("Extracting turbine %s %s", office_id, turbine_id)
+ turbine_data = cwms.get_project_turbine(office_id, turbine_id).json
+ filesystem_store.write_json(turbine_data, office_id, TURBINES_FOLDER, turbine_id)
+
+
+def _upload_one_turbine(turbine):
+ office_id = turbine[0]
+ turbine_id = turbine[1]
+ logger.info("Publishing turbine %s %s", office_id, turbine_id)
+ turbine_data = filesystem_store.read_json(office_id, TURBINES_FOLDER, turbine_id)
+ if turbine_data is None:
+ raise FileNotFoundError(
+ "No staged turbine data found."
+ )
+
+ cwms.store_project_turbine(turbine_data, False)
+
+
+def stage_turbine_changes(
+ office_id: str,
+ project_id: str,
+ turbine_changes: "TurbineChangeConfig | None",
+ default_start: str | None,
+ default_end: str | None,
+) -> None:
+ if turbine_changes is None:
+ logger.debug(
+ "Turbine changes not configured for %s in office %s; nothing to extract.",
+ project_id,
+ office_id,
+ )
+ return
+
+ begin = _parse_timestamp(turbine_changes.start_time or default_start, "start")
+ end = _parse_timestamp(turbine_changes.end_time or default_end, "end")
+
+ logger.info(
+ "Extracting turbine changes for %s in office %s [%s]",
+ project_id,
+ office_id,
+ log_util.window(begin, end),
+ )
+
+ try:
+ change_data = cwms.get_project_turbine_changes(
+ name=project_id,
+ begin=begin,
+ end=end,
+ office=office_id,
+ page_size=None,
+ unit_system=None,
+ start_time_inclusive=None,
+ end_time_inclusive=None,
+ ).json
+ except Exception as error:
+ if not cda_errors.is_no_data(error):
+ raise
+
+ logger.debug(
+ "No turbine changes for %s in office %s between %s and %s; nothing staged.",
+ project_id,
+ office_id,
+ log_util.display(begin),
+ log_util.display(end),
+ )
+ return
+
+ filesystem_store.write_json(change_data, office_id, TURBINE_CHANGES_FOLDER, project_id)
+
+
+def publish_staged_turbine_changes(
+ office_id: str,
+ project_id: str,
+ turbine_changes: "TurbineChangeConfig | None",
+ default_start: str | None,
+ default_end: str | None,
+) -> None:
+ if turbine_changes is None:
+ logger.debug(
+ "Turbine changes not configured for %s in office %s; nothing to load.",
+ project_id,
+ office_id,
+ )
+ return
+
+ logger.info("Publishing turbine changes for %s in office %s", project_id, office_id)
+
+ staged_data = filesystem_store.read_json(office_id, TURBINE_CHANGES_FOLDER, project_id)
+ if staged_data is None:
+ raise FileNotFoundError(
+ "No staged turbine change data found."
+ )
+
+ changes = _extract_turbine_change_records(staged_data)
+ if not changes:
+ logger.debug(
+ "No turbine change records to publish for %s in office %s", project_id, office_id
+ )
+ return
+
+ cwms.store_project_turbine_changes(changes, office_id, project_id, True)
+
+
+def _extract_turbine_change_records(staged_data: object) -> list:
+ if isinstance(staged_data, list):
+ return staged_data
+
+ if isinstance(staged_data, dict):
+ for key in _TURBINE_CHANGE_LIST_KEYS:
+ nested = staged_data.get(key)
+ if isinstance(nested, list):
+ return nested
+
+ return []
+
+
+def _parse_timestamp(value: str | None, label: str) -> datetime:
+ if value is None:
+ raise ValueError(f"Missing {label} time for turbine change processing.")
+
+ normalized = value.strip()
+ if normalized.lower() == "now":
+ return datetime.now()
+
+ try:
+ return datetime.fromisoformat(normalized)
+ except ValueError as exc:
+ try:
+ return datetime.strptime(normalized, "%Y-%m-%d")
+ except ValueError:
+ raise ValueError(f"Invalid {label} time '{value}'. Use ISO-8601 or YYYY-MM-DD.") from exc
+
+
+__all__ = [
+ "publish_staged_turbine_changes",
+ "publish_staged_turbines",
+ "stage_turbine_changes",
+ "stage_turbines",
+]
diff --git a/cda-etl/src/cda_etl/utils/cda_errors.py b/cda-etl/src/cda_etl/utils/cda_errors.py
index 9e5475daa..3229ff1e7 100644
--- a/cda-etl/src/cda_etl/utils/cda_errors.py
+++ b/cda-etl/src/cda_etl/utils/cda_errors.py
@@ -22,6 +22,8 @@
from contextlib import contextmanager
from typing import Iterator
+import requests
+
logger = logging.getLogger(__name__)
# "May be the result of an empty query." comes from cwms.api.ApiError.hint(),
@@ -65,6 +67,18 @@ def is_ambiguous_rating_failure(error: BaseException) -> bool:
)
+def is_connection_failure(error: BaseException) -> bool:
+ """
+ True when the destination itself could not be reached - refused, DNS
+ failure, no route - as opposed to a rejection it sent back for one item.
+
+ Every other item queued behind this one will fail the identical way, so a
+ caller looping over a batch should stop and report once rather than repeat
+ the same "connection refused" for each remaining item.
+ """
+ return isinstance(error, requests.exceptions.ConnectionError)
+
+
_local = threading.local()
@@ -89,6 +103,7 @@ def in_ratings_request() -> bool:
__all__ = [
"in_ratings_request",
"is_ambiguous_rating_failure",
+ "is_connection_failure",
"is_no_data",
"ratings_request",
"status_code_of",
diff --git a/cda-etl/src/cda_etl/utils/filesystem_store.py b/cda-etl/src/cda_etl/utils/filesystem_store.py
index c041ae21b..00639d6b8 100644
--- a/cda-etl/src/cda_etl/utils/filesystem_store.py
+++ b/cda-etl/src/cda_etl/utils/filesystem_store.py
@@ -56,7 +56,7 @@ def set_storage_root(path: str | Path) -> None:
def read_json(*path_parts: str) -> Any | None:
- path = _build_path(*path_parts)
+ path = _build_path(*path_parts, ext=".json")
if path is None:
return None
@@ -69,7 +69,7 @@ def read_json(*path_parts: str) -> Any | None:
def write_json(value: Any, *path_parts: str) -> None:
- path = _build_path(*path_parts)
+ path = _build_path(*path_parts, ext=".json")
if path is None:
raise ValueError("At least one path component is required.")
@@ -78,6 +78,26 @@ def write_json(value: Any, *path_parts: str) -> None:
json.dump(value, file, indent=2)
+def read_xml(*path_parts: str) -> str | None:
+ path = _build_path(*path_parts, ext=".xml")
+ if path is None:
+ return None
+
+ if not path.exists():
+ return None
+
+ return path.read_text(encoding="utf-8")
+
+
+def write_xml(value: str, *path_parts: str) -> None:
+ path = _build_path(*path_parts, ext=".xml")
+ if path is None:
+ raise ValueError("At least one path component is required.")
+
+ path.parent.mkdir(parents=True, exist_ok=True)
+ path.write_text(value, encoding="utf-8")
+
+
def list_json_stems(*path_parts: str) -> list[str]:
"""
Returns the true names of the staged files in a directory - decoded, so a
@@ -93,13 +113,13 @@ def list_json_stems(*path_parts: str) -> list[str]:
return sorted(decode_part(path.stem) for path in directory.glob("*.json") if path.is_file())
-def _build_path(*path_parts: str) -> Path | None:
+def _build_path(*path_parts: str, ext: str) -> Path | None:
if not path_parts:
return None
normalized_parts = _normalize_path_parts(*path_parts)
- if not normalized_parts[-1].endswith(".json"):
- normalized_parts[-1] = f"{normalized_parts[-1]}.json"
+ if not normalized_parts[-1].endswith(ext):
+ normalized_parts[-1] = f"{normalized_parts[-1]}{ext}"
return _STORAGE_ROOT.joinpath(*normalized_parts)
@@ -113,4 +133,12 @@ def _normalize_path_parts(*path_parts: str) -> list[str]:
return [_encode_part(part) for part in normalized_parts]
-__all__ = ["decode_part", "list_json_stems", "read_json", "set_storage_root", "write_json"]
+__all__ = [
+ "decode_part",
+ "list_json_stems",
+ "read_json",
+ "read_xml",
+ "set_storage_root",
+ "write_json",
+ "write_xml",
+]
diff --git a/cda-etl/src/cda_etl/water_contract.py b/cda-etl/src/cda_etl/water_contract.py
new file mode 100644
index 000000000..14336f6fe
--- /dev/null
+++ b/cda-etl/src/cda_etl/water_contract.py
@@ -0,0 +1,271 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+"""
+Water contracts, one level below water users. Each contract also carries two
+things that have no independent CDA resource of their own:
+
+- Pumps (pump-in / pump-out / pump-out-below) are just fields on the contract
+ body, so they travel for free with the contract JSON.
+- Water supply accounting is a time-windowed sub-resource of one contract
+"""
+import logging
+import time
+from datetime import datetime
+from typing import Iterable
+from urllib.parse import quote
+
+import cwms
+import pump
+import utils.cda_errors as cda_errors
+import utils.filesystem_store as filesystem_store
+import utils.log_util as log_util
+import utils.threading_util as threading_util
+from config import WaterContractConfig, WaterUserConfig
+
+logger = logging.getLogger(__name__)
+WATER_CONTRACTS_FOLDER = "WaterContracts"
+ACCOUNTING_FOLDER = "WaterSupplyAccounting"
+
+_NO_ACCOUNTING = "with no accounting entries in the window"
+
+
+def _encode_path_segment(value: str) -> str:
+ return quote(value, safe="")
+
+
+def _label(work_item: list) -> str:
+ _, project_id, water_user_id, contract = work_item[0], work_item[1], work_item[2], work_item[3]
+ return f"{project_id}.{water_user_id}.{contract.id}"
+
+
+def _build_work_items(
+ office_id: str,
+ project_id: str,
+ water_users: Iterable[WaterUserConfig],
+ default_start: str | None,
+ default_end: str | None,
+) -> list[list]:
+ work_items: list[list] = []
+
+ for water_user in water_users:
+ for contract in water_user.contracts():
+ work_items.append([office_id, project_id, water_user.id, contract, default_start, default_end])
+
+ return work_items
+
+
+def stage_water_contracts(
+ office_id: str,
+ project_id: str,
+ water_users: Iterable[WaterUserConfig],
+ default_start: str | None = None,
+ default_end: str | None = None,
+) -> None:
+ water_users = list(water_users)
+ work_items = _build_work_items(office_id, project_id, water_users, default_start, default_end)
+
+ if not work_items:
+ logger.debug(
+ "No water contracts configured for project %s in office %s; nothing to extract.", project_id, office_id
+ )
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_download_one_contract, work_items, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Staged",
+ noun="water contract",
+ total=len(work_items),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def publish_staged_water_contracts(
+ office_id: str,
+ project_id: str,
+ water_users: Iterable[WaterUserConfig],
+ default_start: str | None = None,
+ default_end: str | None = None,
+) -> None:
+ water_users = list(water_users)
+ work_items = _build_work_items(office_id, project_id, water_users, default_start, default_end)
+
+ if not work_items:
+ logger.debug(
+ "No water contracts configured for project %s in office %s; nothing to load.", project_id, office_id
+ )
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_upload_one_contract, work_items, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Published",
+ noun="water contract",
+ total=len(work_items),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def _download_one_contract(work_item: list) -> None:
+ office_id, project_id, water_user_id, contract, default_start, default_end = work_item
+ contract_id = contract.id
+
+ logger.info(
+ "Extracting water contract %s/%s for project %s in office %s", water_user_id, contract_id, project_id, office_id
+ )
+ contract_data = cwms.api.get(
+ endpoint=(
+ f"projects/{office_id}/{project_id}/water-user/{_encode_path_segment(water_user_id)}"
+ f"/contracts/{_encode_path_segment(contract_id)}"
+ ),
+ params={},
+ api_version=1,
+ )
+ filesystem_store.write_json(
+ contract_data, office_id, WATER_CONTRACTS_FOLDER, project_id, water_user_id, contract_id
+ )
+
+ if contract.accounting_enabled:
+ _download_one_contract_accounting(office_id, project_id, water_user_id, contract, default_start, default_end)
+
+
+def _download_one_contract_accounting(
+ office_id: str,
+ project_id: str,
+ water_user_id: str,
+ contract: WaterContractConfig,
+ default_start: str | None,
+ default_end: str | None,
+) -> None:
+ contract_id = contract.id
+ begin, end = _resolve_window(contract.accounting_start_time or default_start, contract.accounting_end_time or default_end)
+
+ logger.info(
+ "Extracting water supply accounting for contract %s/%s for project %s in office %s [%s]",
+ water_user_id,
+ contract_id,
+ project_id,
+ office_id,
+ log_util.window(begin, end),
+ )
+
+ try:
+ accounting_data = cwms.get_pump_accounting(office_id, project_id, water_user_id, contract_id, begin, end).json
+ except Exception as error:
+ if not cda_errors.is_no_data(error):
+ raise
+
+ logger.debug(
+ "No water supply accounting entries for contract %s/%s in office %s between %s and %s; nothing staged.",
+ water_user_id,
+ contract_id,
+ office_id,
+ begin,
+ end,
+ )
+ return
+
+ filesystem_store.write_json(
+ accounting_data, office_id, ACCOUNTING_FOLDER, project_id, water_user_id, contract_id
+ )
+
+
+def _upload_one_contract(work_item: list) -> None:
+ office_id, project_id, water_user_id, contract, default_start, default_end = work_item
+ contract_id = contract.id
+
+ logger.info(
+ "Publishing water contract %s/%s for project %s in office %s", water_user_id, contract_id, project_id, office_id
+ )
+ contract_data = filesystem_store.read_json(office_id, WATER_CONTRACTS_FOLDER, project_id, water_user_id, contract_id)
+ if contract_data is None:
+ raise FileNotFoundError("No staged water contract data found.")
+
+ cwms.api.post(
+ endpoint=(
+ f"projects/{office_id}/{project_id}/water-user/{_encode_path_segment(water_user_id)}/contracts"
+ ),
+ data=contract_data,
+ params={"fail-if-exists": False, "ignore-nulls": False},
+ api_version=1,
+ )
+
+ for pump_config in contract.pumps(enabled_only=False):
+ if pump_config.enabled:
+ continue
+
+ pump.disassociate_pump(
+ office_id, project_id, water_user_id, contract_id, pump_config.id, pump_config.type
+ )
+
+ if contract.accounting_enabled:
+ _upload_one_contract_accounting(office_id, project_id, water_user_id, contract)
+
+
+def _upload_one_contract_accounting(office_id: str, project_id: str, water_user_id: str, contract: WaterContractConfig) -> None:
+ contract_id = contract.id
+ accounting_data = filesystem_store.read_json(office_id, ACCOUNTING_FOLDER, project_id, water_user_id, contract_id)
+ if accounting_data is None:
+ logger.debug(
+ "No staged water supply accounting for contract %s/%s in office %s; nothing to publish.",
+ water_user_id,
+ contract_id,
+ office_id,
+ )
+ return
+
+ logger.info(
+ "Publishing water supply accounting for contract %s/%s for project %s in office %s",
+ water_user_id,
+ contract_id,
+ project_id,
+ office_id,
+ )
+ cwms.store_pump_accounting(office_id, project_id, water_user_id, contract_id, accounting_data)
+
+
+def _resolve_window(start: str | None, end: str | None) -> tuple[str, str]:
+ """
+ Water supply accounting takes plain ISO-8601 strings (unlike the location
+ level / rating / turbine-change endpoints, which take real datetime
+ objects) - so this only needs to resolve the "now" shorthand and validate
+ that something was actually configured, not fully parse the value.
+ """
+ return _resolve_one(start, "start"), _resolve_one(end, "end")
+
+
+def _resolve_one(value: str | None, label: str) -> str:
+ if value is None:
+ raise ValueError(f"Missing {label} time for water supply accounting.")
+
+ normalized = value.strip()
+ if normalized.lower() == "now":
+ return datetime.now().isoformat()
+
+ return normalized
+
+
+__all__ = ["publish_staged_water_contracts", "stage_water_contracts"]
diff --git a/cda-etl/src/cda_etl/water_user.py b/cda-etl/src/cda_etl/water_user.py
new file mode 100644
index 000000000..2635865bd
--- /dev/null
+++ b/cda-etl/src/cda_etl/water_user.py
@@ -0,0 +1,131 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+import time
+from typing import Iterable
+from urllib.parse import quote
+
+import cwms
+import utils.filesystem_store as filesystem_store
+import utils.log_util as log_util
+import utils.threading_util as threading_util
+from config import WaterUserConfig
+
+logger = logging.getLogger(__name__)
+WATER_USERS_FOLDER = "WaterUsers"
+
+
+def _encode_path_segment(value: str) -> str:
+ return quote(value, safe="")
+
+
+def _label(work_item) -> str:
+ return f"{work_item[0]}.{work_item[1]}.{work_item[2]}"
+
+
+def _collect(office_id: str, project_id: str, water_users: list, phase: str) -> list[list[str]]:
+ work_items = [[office_id, project_id, item.id] for item in water_users if item.id]
+ invalid = len(water_users) - len(work_items)
+
+ if invalid:
+ logger.warning(
+ "Skipped %s with no id for project %s in office %s. Expected '[office_id].[project_id].[water_user_id]'.",
+ log_util.plural(invalid, "water user"),
+ project_id,
+ office_id,
+ )
+
+ if not work_items and not water_users:
+ logger.debug(
+ "No water users configured for project %s in office %s; nothing to %s.", project_id, office_id, phase
+ )
+
+ return work_items
+
+
+def stage_water_users(office_id: str, project_id: str, water_users: Iterable[WaterUserConfig]) -> None:
+ water_users = list(water_users)
+ work_items = _collect(office_id, project_id, water_users, "extract")
+
+ if not work_items:
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_download_one_water_user, work_items, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Staged",
+ noun="water user",
+ total=len(work_items),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def publish_staged_water_users(office_id: str, project_id: str, water_users: Iterable[WaterUserConfig]) -> None:
+ water_users = list(water_users)
+ work_items = _collect(office_id, project_id, water_users, "load")
+
+ if not work_items:
+ return
+
+ tally = log_util.Tally()
+ started = time.monotonic()
+ threading_util.execute_tasks(_upload_one_water_user, work_items, label=_label, tally=tally)
+ log_util.outcome(
+ logger,
+ action="Published",
+ noun="water user",
+ total=len(work_items),
+ tally=tally,
+ office_id=office_id,
+ elapsed=time.monotonic() - started,
+ )
+
+
+def _download_one_water_user(work_item: list[str]) -> None:
+ office_id, project_id, water_user_id = work_item
+
+ logger.info("Extracting water user %s for project %s in office %s", water_user_id, project_id, office_id)
+ water_user_data = cwms.api.get(
+ endpoint=f"projects/{office_id}/{project_id}/water-user/{_encode_path_segment(water_user_id)}",
+ params={},
+ api_version=1,
+ )
+ filesystem_store.write_json(water_user_data, office_id, WATER_USERS_FOLDER, project_id, water_user_id)
+
+
+def _upload_one_water_user(work_item: list[str]) -> None:
+ office_id, project_id, water_user_id = work_item
+
+ logger.info("Publishing water user %s for project %s in office %s", water_user_id, project_id, office_id)
+ water_user_data = filesystem_store.read_json(office_id, WATER_USERS_FOLDER, project_id, water_user_id)
+ if water_user_data is None:
+ raise FileNotFoundError("No staged water user data found.")
+
+ cwms.api.post(
+ endpoint=f"projects/{office_id}/{project_id}/water-user",
+ data=water_user_data,
+ params={"fail-if-exists": False},
+ api_version=1,
+ )
+
+
+__all__ = ["publish_staged_water_users", "stage_water_users"]
diff --git a/cda-etl/tests/cda_etl/test_filesystem_store.py b/cda-etl/tests/cda_etl/test_filesystem_store.py
index 4c1e739b7..ba35ffacc 100644
--- a/cda-etl/tests/cda_etl/test_filesystem_store.py
+++ b/cda-etl/tests/cda_etl/test_filesystem_store.py
@@ -143,3 +143,18 @@ def test_rating_semicolons_survive(tmp_path):
filesystem_store.write_json({}, "SWT", "Ratings", "EUFA.Elev;Area.Linear.Production")
assert filesystem_store.read_json("SWT", "Ratings", "EUFA.Elev;Area.Linear.Production") == {}
+
+
+def test_rating_xml_uses_rating_id_filename_without_por_suffix(tmp_path):
+ filesystem_store.set_storage_root(tmp_path)
+
+ filesystem_store.write_xml(
+ "",
+ "SWT",
+ "Ratings",
+ "EUFA.Elev;Area.Linear.Production",
+ )
+
+ path = tmp_path / "SWT" / "Ratings" / "EUFA.Elev;Area.Linear.Production.xml"
+ assert path.exists()
+ assert filesystem_store.read_xml("SWT", "Ratings", "EUFA.Elev;Area.Linear.Production") == ""
diff --git a/cda-etl/tests/cda_etl/test_gate_change.py b/cda-etl/tests/cda_etl/test_gate_change.py
new file mode 100644
index 000000000..d07f0413b
--- /dev/null
+++ b/cda-etl/tests/cda_etl/test_gate_change.py
@@ -0,0 +1,168 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+
+import pytest
+
+import cwms
+import gate_change
+from config import GateChangeConfig
+
+
+def _api_error(status_code: int, body: str = ""):
+ import requests
+
+ response = requests.Response()
+ response.status_code = status_code
+ response.reason = "Not Found" if status_code == 404 else "Internal Server Error"
+ response.url = "https://cda.test/cwms-data/projects/SWT/EUFA/gate-changes"
+ response._content = body.encode()
+
+ return cwms.api.ApiError(response)
+
+
+def test_stage_gate_changes_not_configured_is_debug_only(mocker, caplog):
+ caplog.set_level(logging.DEBUG)
+ mock_get = mocker.patch("cwms.api.get")
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ gate_change.stage_gate_changes("SWT", "EUFA", None, "2026-01-01", "2026-01-02")
+
+ mock_get.assert_not_called()
+ mock_write.assert_not_called()
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
+
+
+def test_publish_staged_gate_changes_not_configured(mocker, caplog):
+ caplog.set_level(logging.DEBUG)
+ mock_read = mocker.patch("utils.filesystem_store.read_json")
+ mock_post = mocker.patch("cwms.api.post")
+
+ gate_change.publish_staged_gate_changes("SWT", "EUFA", None, "2026-01-01", "2026-01-02")
+
+ mock_read.assert_not_called()
+ mock_post.assert_not_called()
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
+
+
+def test_stage_gate_changes_windowed(mocker):
+ mock_get = mocker.patch("cwms.api.get", return_value={"gate-changes": [{"type": "gate-change"}]})
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ config = GateChangeConfig(enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}})
+ gate_change.stage_gate_changes("SWT", "EUFA", config, "2020-01-01", "2020-01-02")
+
+ _, kwargs = mock_get.call_args
+ assert kwargs["endpoint"] == "projects/SWT/EUFA/gate-changes"
+ assert kwargs["api_version"] == 1
+ assert kwargs["params"]["begin"].startswith("2026-01-01")
+ assert kwargs["params"]["end"].startswith("2026-01-02")
+ mock_write.assert_called_once_with(
+ {"gate-changes": [{"type": "gate-change"}]}, "SWT", "GateChanges", "EUFA"
+ )
+
+
+def test_stage_gate_changes_uses_defaults_when_config_has_no_window(mocker):
+ mock_get = mocker.patch("cwms.api.get", return_value={"gate-changes": []})
+ mocker.patch("utils.filesystem_store.write_json")
+
+ config = GateChangeConfig(enabled=True, raw={})
+ gate_change.stage_gate_changes("SWT", "EUFA", config, "2020-06-01", "2020-06-02")
+
+ _, kwargs = mock_get.call_args
+ assert kwargs["params"]["begin"].startswith("2020-06-01")
+ assert kwargs["params"]["end"].startswith("2020-06-02")
+
+
+def test_stage_gate_changes_no_data_is_not_a_failure(mocker, caplog):
+ caplog.set_level(logging.DEBUG)
+ mocker.patch("cwms.api.get", side_effect=_api_error(404, '{"message":"Not found."}'))
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ config = GateChangeConfig(enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}})
+ gate_change.stage_gate_changes("SWT", "EUFA", config, None, None)
+
+ mock_write.assert_not_called()
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
+
+
+def test_stage_gate_changes_server_error_propagates(mocker):
+ mocker.patch("cwms.api.get", side_effect=_api_error(500, '{"message":"Database Error"}'))
+ mocker.patch("utils.filesystem_store.write_json")
+
+ config = GateChangeConfig(enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}})
+ with pytest.raises(cwms.api.ApiError):
+ gate_change.stage_gate_changes("SWT", "EUFA", config, None, None)
+
+
+def test_publish_staged_gate_changes_raises_file_not_found_when_nothing_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+
+ config = GateChangeConfig(enabled=True, raw={})
+ with pytest.raises(FileNotFoundError):
+ gate_change.publish_staged_gate_changes("SWT", "EUFA", config, None, None)
+
+
+def test_publish_staged_gate_changes_extracts_list_from_dict_wrapper(mocker):
+ changes = [{"type": "gate-change", "change-date": 1}]
+ mocker.patch("utils.filesystem_store.read_json", return_value={"gate-changes": changes})
+ mock_post = mocker.patch("cwms.api.post")
+
+ config = GateChangeConfig(enabled=True, raw={})
+ gate_change.publish_staged_gate_changes("SWT", "EUFA", config, None, None)
+
+ mock_post.assert_called_once_with(
+ endpoint="projects/gate-changes",
+ data=changes,
+ params={"fail-if-exists": True},
+ api_version=1,
+ )
+
+
+def test_publish_staged_gate_changes_accepts_plain_list(mocker):
+ changes = [{"type": "gate-change", "change-date": 1}]
+ mocker.patch("utils.filesystem_store.read_json", return_value=changes)
+ mock_post = mocker.patch("cwms.api.post")
+
+ config = GateChangeConfig(enabled=True, raw={})
+ gate_change.publish_staged_gate_changes("SWT", "EUFA", config, None, None)
+
+ mock_post.assert_called_once_with(
+ endpoint="projects/gate-changes",
+ data=changes,
+ params={"fail-if-exists": True},
+ api_version=1,
+ )
+
+
+def test_publish_staged_gate_changes_empty_list_does_not_call_store(mocker, caplog):
+ caplog.set_level(logging.DEBUG)
+ mocker.patch("utils.filesystem_store.read_json", return_value={"gate-changes": []})
+ mock_post = mocker.patch("cwms.api.post")
+
+ config = GateChangeConfig(enabled=True, raw={})
+ gate_change.publish_staged_gate_changes("SWT", "EUFA", config, None, None)
+
+ mock_post.assert_not_called()
+
+
+def test_gate_change_config_start_end_time_from_download_window():
+ config = GateChangeConfig.from_dict({"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}})
+
+ assert config.start_time == "2026-01-01"
+ assert config.end_time == "2026-01-02"
diff --git a/cda-etl/tests/cda_etl/test_location_group.py b/cda-etl/tests/cda_etl/test_location_group.py
new file mode 100644
index 000000000..5479edbe3
--- /dev/null
+++ b/cda-etl/tests/cda_etl/test_location_group.py
@@ -0,0 +1,366 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+from unittest.mock import ANY, MagicMock
+
+import location_group
+from config import LocationGroupConfig
+
+
+def _ref(group_id: str, office_id: str = "SWT") -> location_group._GroupRef:
+ return location_group._GroupRef(id=group_id, group_office_id=office_id, category_office_id=office_id)
+
+
+def test_stage_location_groups(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [LocationGroupConfig(category_id="REGI", id="EUFA.GRP", enabled=True, raw={})]
+
+ location_group.stage_location_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ location_group._download_location_groups_in_category,
+ [["SWT", "REGI", _ref("EUFA.GRP")]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_stage_location_groups_resolves_office_overrides_from_config(mocker):
+ """
+ groupOfficeId / categoryOfficeId fall back to the office being staged for,
+ but an explicit override in the config has to survive being collapsed into
+ the per-category work item.
+ """
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [
+ LocationGroupConfig(
+ category_id="REGI",
+ id="EUFA.GRP",
+ enabled=True,
+ raw={"groupOfficeId": "HQ", "categoryOfficeId": "HQ2"},
+ )
+ ]
+
+ location_group.stage_location_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ location_group._download_location_groups_in_category,
+ [["SWT", "REGI", location_group._GroupRef(id="EUFA.GRP", group_office_id="HQ", category_office_id="HQ2")]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_stage_location_groups_groups_named_ids_into_one_task_per_category(mocker):
+ """
+ One staged file per category means one task per category: several named ids
+ in the same category are handed to a single work item, not one each.
+ """
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [
+ LocationGroupConfig(category_id="REGI", id="EUFA.GRP", enabled=True, raw={}),
+ LocationGroupConfig(category_id="REGI", id="EUFA.GRP2", enabled=True, raw={}),
+ LocationGroupConfig(category_id="OTHER", id="EUFA.GRP", enabled=True, raw={}),
+ ]
+
+ location_group.stage_location_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ location_group._download_location_groups_in_category,
+ [
+ ["SWT", "OTHER", _ref("EUFA.GRP")],
+ ["SWT", "REGI", _ref("EUFA.GRP"), _ref("EUFA.GRP2")],
+ ],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_stage_location_groups_all_in_category(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [LocationGroupConfig(category_id="REGI", id="*", enabled=True, raw={}, all_in_category=True)]
+
+ location_group.stage_location_groups("SWT", groups)
+
+ assert mock_execute.call_count == 1
+ mock_execute.assert_called_once_with(
+ location_group._download_all_location_groups_in_category,
+ [["SWT", "REGI"]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_stage_location_groups_skips_named_ids_covered_by_an_all_category(mocker):
+ """
+ Both declarations resolve to the same file, so the category-wide read - which
+ already contains the named ids - is the only task.
+ """
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [
+ LocationGroupConfig(category_id="REGI", id="*", enabled=True, raw={}, all_in_category=True),
+ LocationGroupConfig(category_id="REGI", id="EUFA.GRP", enabled=True, raw={}),
+ ]
+
+ location_group.stage_location_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ location_group._download_all_location_groups_in_category,
+ [["SWT", "REGI"]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_publish_staged_location_groups(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [LocationGroupConfig(category_id="REGI", id="EUFA.GRP", enabled=True, raw={})]
+
+ location_group.publish_staged_location_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ location_group._upload_location_groups_in_category,
+ [["SWT", "REGI", _ref("EUFA.GRP")]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_publish_staged_location_groups_all_in_category(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [LocationGroupConfig(category_id="REGI", id="*", enabled=True, raw={}, all_in_category=True)]
+
+ location_group.publish_staged_location_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ location_group._upload_location_groups_in_category,
+ [["SWT", "REGI"]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_download_location_groups_in_category_writes_one_file(mocker):
+ flag = {"office-id": "SWT", "id": "EUFA.GRP.FLAG", "assigned-locations": []}
+ enabled = {"office-id": "SWT", "id": "EUFA.GRP.ENABLED", "assigned-locations": []}
+ mock_get = mocker.patch(
+ "cwms.get_location_group", side_effect=[MagicMock(json=enabled), MagicMock(json=flag)]
+ )
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ location_group._download_location_groups_in_category(
+ ["SWT", "REGI", _ref("EUFA.GRP.ENABLED"), _ref("EUFA.GRP.FLAG")]
+ )
+
+ assert mock_get.call_count == 2
+ mock_get.assert_any_call(
+ loc_group_id="EUFA.GRP.FLAG",
+ category_id="REGI",
+ office_id="SWT",
+ group_office_id="SWT",
+ category_office_id="SWT",
+ )
+ mock_write.assert_called_once_with([enabled, flag], "SWT", "LocationGroups", "REGI")
+
+
+def test_download_location_groups_in_category_merges_with_already_staged_records(mocker):
+ """
+ Location groups are declared at office level only, but staging can still be
+ invoked more than once for the same category. A plain write would keep only
+ the last call's results.
+ """
+ existing = {"office-id": "SWT", "id": "EUFA.GRP.ENABLED"}
+ incoming = {"office-id": "SWT", "id": "EUFA.GRP.FLAG"}
+ mocker.patch("cwms.get_location_group", return_value=MagicMock(json=incoming))
+ mocker.patch("utils.filesystem_store.read_json", return_value=[existing])
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ location_group._download_location_groups_in_category(["SWT", "REGI", _ref("EUFA.GRP.FLAG")])
+
+ mock_write.assert_called_once_with([existing, incoming], "SWT", "LocationGroups", "REGI")
+
+
+def test_download_location_groups_in_category_uses_resolved_office_overrides(mocker):
+ mock_get = mocker.patch("cwms.get_location_group", return_value=MagicMock(json={"id": "GRP"}))
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+ mocker.patch("utils.filesystem_store.write_json")
+
+ location_group._download_location_groups_in_category(
+ ["SWT", "REGI", location_group._GroupRef(id="GRP", group_office_id="HQ", category_office_id="HQ2")]
+ )
+
+ mock_get.assert_called_once_with(
+ loc_group_id="GRP",
+ category_id="REGI",
+ office_id="SWT",
+ group_office_id="HQ",
+ category_office_id="HQ2",
+ )
+
+
+def test_download_all_location_groups_in_category(mocker):
+ flag = {"id": "EUFA.GRP.FLAG", "office-id": "SWT"}
+ enabled = {"id": "EUFA.GRP.ENABLED", "office-id": "SWT"}
+ mock_get = mocker.patch("cwms.get_location_groups", return_value=MagicMock(json=[flag, enabled]))
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ location_group._download_all_location_groups_in_category(["SWT", "REGI"])
+
+ mock_get.assert_called_once_with(office_id="SWT", include_assigned=True, location_category_like="REGI")
+ # One file for the whole category, not one per group.
+ mock_write.assert_called_once_with([enabled, flag], "SWT", "LocationGroups", "REGI")
+
+
+def test_download_all_location_groups_in_category_replaces_the_staged_file(mocker):
+ """
+ The listing is the authoritative snapshot, so a group that no longer exists
+ upstream must not survive on disk.
+ """
+ kept = {"id": "EUFA.GRP.FLAG", "office-id": "SWT"}
+ mocker.patch("cwms.get_location_groups", return_value=MagicMock(json=[kept]))
+ mock_read = mocker.patch("utils.filesystem_store.read_json")
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ location_group._download_all_location_groups_in_category(["SWT", "REGI"])
+
+ mock_read.assert_not_called()
+ mock_write.assert_called_once_with([kept], "SWT", "LocationGroups", "REGI")
+
+
+def test_upload_location_groups_in_category_posts_each_record(mocker):
+ """
+ The REST API has no bulk store, so the one staged file is parsed and each
+ record posted on its own.
+ """
+ flag = {"office-id": "SWT", "id": "EUFA.GRP.FLAG"}
+ enabled = {"office-id": "SWT", "id": "EUFA.GRP.ENABLED"}
+ mock_store = mocker.patch("cwms.store_location_groups")
+ mock_read = mocker.patch("utils.filesystem_store.read_json", return_value=[enabled, flag])
+
+ location_group._upload_location_groups_in_category(["SWT", "REGI"])
+
+ mock_read.assert_called_once_with("SWT", "LocationGroups", "REGI")
+ assert mock_store.call_count == 2
+ mock_store.assert_any_call(flag)
+ mock_store.assert_any_call(enabled)
+
+
+def test_upload_location_groups_in_category_publishes_only_the_named_ids(mocker):
+ flag = {"office-id": "SWT", "id": "EUFA.GRP.FLAG"}
+ enabled = {"office-id": "SWT", "id": "EUFA.GRP.ENABLED"}
+ mock_store = mocker.patch("cwms.store_location_groups")
+ mocker.patch("utils.filesystem_store.read_json", return_value=[enabled, flag])
+
+ location_group._upload_location_groups_in_category(["SWT", "REGI", _ref("EUFA.GRP.FLAG")])
+
+ mock_store.assert_called_once_with(flag)
+
+
+def test_upload_location_groups_in_category_raises_file_not_found_when_nothing_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+
+ try:
+ location_group._upload_location_groups_in_category(["SWT", "REGI"])
+ except FileNotFoundError:
+ return
+
+ raise AssertionError("Expected FileNotFoundError")
+
+
+def test_upload_location_groups_in_category_attempts_every_record_before_failing(mocker):
+ """
+ A category can hold many groups; aborting on the first rejection would hide
+ the rest.
+ """
+ import cwms
+
+ api_error_type = cwms.api.ApiError
+ response = type(
+ "Response",
+ (),
+ {"status_code": 400, "url": "http://cda/location/group", "reason": "Bad Request", "text": ""},
+ )()
+
+ bad = {"office-id": "SWT", "id": "A.BAD"}
+ good = {"office-id": "SWT", "id": "B.GOOD"}
+ mock_store = mocker.patch("cwms.store_location_groups", side_effect=[api_error_type(response), None])
+ mocker.patch("utils.filesystem_store.read_json", return_value=[bad, good])
+
+ try:
+ location_group._upload_location_groups_in_category(["SWT", "REGI"])
+ except RuntimeError as error:
+ assert "A.BAD" in str(error)
+ else:
+ raise AssertionError("Expected RuntimeError")
+
+ assert mock_store.call_count == 2
+
+
+def test_upload_location_group_deletes_and_recreates_on_conflict(mocker):
+ """
+ store_location_groups() calls CREATE_LOC_GROUP2 - a create-only procedure,
+ not an upsert, despite CDA using it for what is meant to be a store/replace.
+ update_location_group()'s PATCH endpoint isn't a substitute either -
+ LocationGroupController.update() in cwms-data-api only renames the group
+ and (re)assigns locations, never touching shared-loc-alias-id/description/
+ locGroupAttribute. So a conflict has to fall back to delete-then-recreate,
+ not PATCH, or a changed alias never reaches an already-existing group.
+ """
+ import cwms
+
+ api_error_type = cwms.api.ApiError
+ response = type("Response", (), {"status_code": 409})()
+
+ flag = {"office-id": "SWT", "id": "EUFA.GRP.FLAG"}
+ mock_store = mocker.patch("cwms.store_location_groups", side_effect=[api_error_type(response), None])
+ mock_delete = mocker.patch("cwms.delete_location_group")
+ mocker.patch("utils.filesystem_store.read_json", return_value=[flag])
+
+ location_group._upload_location_groups_in_category(["SWT", "REGI", _ref("EUFA.GRP.FLAG")])
+
+ assert mock_store.call_count == 2
+ mock_store.assert_called_with(flag)
+ mock_delete.assert_called_once_with("EUFA.GRP.FLAG", "REGI", "SWT", cascade_delete=True)
+
+
+def test_upload_location_group_reraises_non_conflict_errors(mocker):
+ import cwms
+
+ api_error_type = cwms.api.ApiError
+ response = type("Response", (), {"status_code": 500, "url": "u", "reason": "r", "text": ""})()
+
+ flag = {"office-id": "SWT", "id": "EUFA.GRP.FLAG"}
+ mocker.patch("cwms.store_location_groups", side_effect=api_error_type(response))
+ mock_delete = mocker.patch("cwms.delete_location_group")
+ mocker.patch("utils.filesystem_store.read_json", return_value=[flag])
+
+ try:
+ location_group._upload_location_groups_in_category(["SWT", "REGI", _ref("EUFA.GRP.FLAG")])
+ except RuntimeError as error:
+ assert "EUFA.GRP.FLAG" in str(error)
+ else:
+ raise AssertionError("Expected RuntimeError")
+
+ mock_delete.assert_not_called()
+
+
+def test_nothing_configured_is_not_a_warning(caplog):
+ """
+ Zero location groups configured is a normal config, not something worth
+ warning about on every office that has none.
+ """
+ caplog.set_level(logging.DEBUG)
+
+ location_group.stage_location_groups("SWT", [])
+ location_group.publish_staged_location_groups("SWT", [])
+
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
diff --git a/cda-etl/tests/cda_etl/test_lock.py b/cda-etl/tests/cda_etl/test_lock.py
new file mode 100644
index 000000000..bef474536
--- /dev/null
+++ b/cda-etl/tests/cda_etl/test_lock.py
@@ -0,0 +1,109 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+from unittest.mock import ANY
+
+import lock
+from config import LockConfig
+
+
+def test_stage_locks(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ locks = [LockConfig(id="TestLock", enabled=True, raw={})]
+
+ lock.stage_locks("SWT", locks)
+
+ mock_execute.assert_called_once_with(lock._download_one_lock, [["SWT", "TestLock"]], label=ANY, tally=ANY)
+
+
+def test_publish_staged_locks(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ locks = [LockConfig(id="TestLock", enabled=True, raw={})]
+
+ lock.publish_staged_locks("SWT", locks)
+
+ mock_execute.assert_called_once_with(lock._upload_one_lock, [["SWT", "TestLock"]], label=ANY, tally=ANY)
+
+
+def test_stage_locks_invalid_format(mocker):
+ mock_warning = mocker.patch.object(lock.logger, "warning")
+
+ lock.stage_locks("SWT", [LockConfig(id="", enabled=True, raw={})])
+
+ assert mock_warning.called
+
+
+def test_download_one_lock(mocker):
+ mock_write_json = mocker.patch("utils.filesystem_store.write_json")
+ mock_get = mocker.patch("cwms.api.get", return_value={"name": "MainLock"})
+
+ lock._download_one_lock(["SWT", "MainLock"])
+
+ mock_get.assert_called_once_with(
+ endpoint="projects/locks/MainLock",
+ params={"office": "SWT"},
+ api_version=1,
+ )
+ mock_write_json.assert_called_once_with({"name": "MainLock"}, "SWT", "Locks", "MainLock")
+
+
+def test_download_one_lock_encodes_id_with_spaces(mocker):
+ mock_get = mocker.patch("cwms.api.get", return_value={"name": "Main Lock"})
+ mocker.patch("utils.filesystem_store.write_json")
+
+ lock._download_one_lock(["SWT", "Main Lock"])
+
+ mock_get.assert_called_once_with(
+ endpoint="projects/locks/Main%20Lock",
+ params={"office": "SWT"},
+ api_version=1,
+ )
+
+
+def test_upload_one_lock(mocker):
+ mock_post = mocker.patch("cwms.api.post")
+ mocker.patch("utils.filesystem_store.read_json", return_value={"name": "MainLock"})
+
+ lock._upload_one_lock(["SWT", "MainLock"])
+
+ mock_post.assert_called_once_with(
+ endpoint="projects/locks",
+ data={"name": "MainLock"},
+ params={"fail-if-exists": False},
+ api_version=1,
+ )
+
+
+def test_upload_one_lock_raises_file_not_found_when_nothing_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+
+ try:
+ lock._upload_one_lock(["SWT", "MainLock"])
+ except FileNotFoundError:
+ return
+
+ raise AssertionError("Expected FileNotFoundError")
+
+
+def test_nothing_configured_is_not_a_warning(caplog):
+ import logging
+ caplog.set_level(logging.DEBUG)
+
+ lock.stage_locks("SWT", [])
+ lock.publish_staged_locks("SWT", [])
+
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
diff --git a/cda-etl/tests/cda_etl/test_main.py b/cda-etl/tests/cda_etl/test_main.py
index d30013480..9f79ea517 100644
--- a/cda-etl/tests/cda_etl/test_main.py
+++ b/cda-etl/tests/cda_etl/test_main.py
@@ -16,7 +16,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import main
-from config import DownloadConfig, OfficeConfig, SettingsConfig
+from config import DownloadConfig, LocationGroupConfig, OfficeConfig, RatingConfig, SettingsConfig
def _office() -> OfficeConfig:
@@ -52,6 +52,13 @@ def _patch_stage(mocker) -> dict:
"timeseries": mocker.patch("timeseries.stage_timeseries"),
"ratings": mocker.patch("rating.stage_ratings"),
"levels": mocker.patch("location_level.stage_location_levels"),
+ "outlets": mocker.patch("outlet.stage_outlets"),
+ "turbines": mocker.patch("turbine.stage_turbines"),
+ "turbine_changes": mocker.patch("turbine.stage_turbine_changes"),
+ "locks": mocker.patch("lock.stage_locks"),
+ "gate_changes": mocker.patch("gate_change.stage_gate_changes"),
+ "water_users": mocker.patch("water_user.stage_water_users"),
+ "water_contracts": mocker.patch("water_contract.stage_water_contracts"),
}
mocker.patch("location.stage_locations")
mocker.patch("project.stage_projects")
@@ -81,6 +88,53 @@ def test_stage_project_data_passes_project_items_through(mocker):
assert [item.id for item in level_items] == ["EUFA-Dam.Elev.Inst.0.Top of Flood"]
+def _office_with_new_resources() -> OfficeConfig:
+ return OfficeConfig.from_dict(
+ {
+ "id": "SWT",
+ "locationGroups": [{"categoryId": "CAT1", "id": "GROUP1"}],
+ "timeseriesGroups": [{"categoryId": "CAT1", "id": "GROUP1"}],
+ "projects": [
+ {
+ "id": "EUFA",
+ "outlets": [{"id": "EUFA-Outlet1"}],
+ "turbines": [{"id": "EUFA-Turbine1"}],
+ "locks": [{"id": "EUFA-Lock1"}],
+ "waterUsers": [{"id": "ENTITY1", "contracts": [{"id": "CONTRACT1"}]}],
+ "gateChanges": {"enabled": True},
+ "turbineChanges": {"enabled": True},
+ }
+ ],
+ }
+ )
+
+
+def test_stage_project_data_passes_new_resource_items_through(mocker):
+ mocks = _patch_stage(mocker)
+ office = _office_with_new_resources()
+ eufa = next(project for project in office.projects() if project.id == "EUFA")
+
+ main._stage_project_data(eufa, _config())
+
+ outlet_items = mocks["outlets"].call_args.args[1]
+ assert [item.id for item in outlet_items] == ["EUFA-Outlet1"]
+
+ turbine_items = mocks["turbines"].call_args.args[1]
+ assert [item.id for item in turbine_items] == ["EUFA-Turbine1"]
+
+ lock_items = mocks["locks"].call_args.args[1]
+ assert [item.id for item in lock_items] == ["EUFA-Lock1"]
+
+ water_user_items = mocks["water_users"].call_args.args[2]
+ assert [item.id for item in water_user_items] == ["ENTITY1"]
+
+ # water_contract.stage_water_contracts receives the same water user list.
+ assert mocks["water_contracts"].call_args.args[2] is water_user_items
+
+ assert mocks["gate_changes"].call_args.args[2].enabled is True
+ assert mocks["turbine_changes"].call_args.args[2].enabled is True
+
+
def test_stage_project_data_handles_project_with_no_items(mocker):
mocks = _patch_stage(mocker)
office = _office()
@@ -127,6 +181,188 @@ def test_publish_project_data_passes_project_items_through(mocker):
]
+def test_publish_project_data_passes_new_resource_items_through(mocker):
+ mock_publish_outlets = mocker.patch("outlet.publish_staged_outlets")
+ mock_publish_turbines = mocker.patch("turbine.publish_staged_turbines")
+ mocker.patch("turbine.publish_staged_turbine_changes")
+ mock_publish_locks = mocker.patch("lock.publish_staged_locks")
+ mocker.patch("gate_change.publish_staged_gate_changes")
+ mock_publish_water_users = mocker.patch("water_user.publish_staged_water_users")
+ mocker.patch("water_contract.publish_staged_water_contracts")
+ mocker.patch("timeseries.publish_staged_timeseries")
+ mocker.patch("rating.publish_staged_ratings")
+ mocker.patch("location_level.publish_staged_location_levels")
+ mocker.patch("location.publish_staged_locations")
+ mocker.patch("project.publish_staged_projects")
+ mocker.patch("clob.publish_staged_clobs")
+ mocker.patch("property.publish_staged_properties")
+
+ office = _office_with_new_resources()
+ eufa = next(project for project in office.projects() if project.id == "EUFA")
+
+ main._publish_project_data(eufa, _config())
+
+ assert [item.id for item in mock_publish_outlets.call_args.args[1]] == ["EUFA-Outlet1"]
+ assert [item.id for item in mock_publish_turbines.call_args.args[1]] == ["EUFA-Turbine1"]
+ assert [item.id for item in mock_publish_locks.call_args.args[1]] == ["EUFA-Lock1"]
+ assert [item.id for item in mock_publish_water_users.call_args.args[2]] == ["ENTITY1"]
+
+
+def test_stage_outlet_rating_dependencies_skips_when_no_outlet_has_a_rating_group(mocker):
+ mocker.patch("outlet_rating.derive_rating_location_groups", return_value=[])
+ mock_stage_groups = mocker.patch("location_group.stage_location_groups")
+ mock_stage_ratings = mocker.patch("rating.stage_ratings")
+
+ office = _office_with_new_resources()
+ eufa = next(project for project in office.projects() if project.id == "EUFA")
+
+ main._stage_outlet_rating_dependencies(eufa, _config(), [])
+
+ mock_stage_groups.assert_not_called()
+ mock_stage_ratings.assert_not_called()
+
+
+def test_stage_outlet_rating_dependencies_stages_derived_groups_then_ratings(mocker):
+ derived_group = LocationGroupConfig.from_dict({"categoryId": "Rating", "id": "Rating-EUFA-TG1"})
+ derived_rating = RatingConfig.from_dict({"id": "EUFA.Elev;Opening.Standard.Production"})
+ mocker.patch("outlet_rating.derive_rating_location_groups", return_value=[derived_group])
+ mock_derive_ratings = mocker.patch(
+ "outlet_rating.derive_ratings_from_location_groups", return_value=[derived_rating]
+ )
+ mock_stage_groups = mocker.patch("location_group.stage_location_groups")
+ mock_stage_ratings = mocker.patch("rating.stage_ratings")
+
+ office = _office_with_new_resources()
+ eufa = next(project for project in office.projects() if project.id == "EUFA")
+
+ main._stage_outlet_rating_dependencies(eufa, _config(), list(eufa.outlets()))
+
+ mock_stage_groups.assert_called_once_with("SWT", [derived_group])
+ mock_derive_ratings.assert_called_once_with("SWT", [derived_group])
+ mock_stage_ratings.assert_called_once_with("SWT", [derived_rating], None, None)
+
+
+def test_stage_outlet_rating_dependencies_stages_groups_even_with_no_alias_set_yet(mocker):
+ """
+ A freshly-created outlet's rating group can exist with no shared-loc-alias-id
+ set yet - the group should still be staged so it is not silently dropped.
+ """
+ derived_group = LocationGroupConfig.from_dict({"categoryId": "Rating", "id": "Rating-EUFA-TG1"})
+ mocker.patch("outlet_rating.derive_rating_location_groups", return_value=[derived_group])
+ mocker.patch("outlet_rating.derive_ratings_from_location_groups", return_value=[])
+ mock_stage_groups = mocker.patch("location_group.stage_location_groups")
+ mock_stage_ratings = mocker.patch("rating.stage_ratings")
+
+ office = _office_with_new_resources()
+ eufa = next(project for project in office.projects() if project.id == "EUFA")
+
+ main._stage_outlet_rating_dependencies(eufa, _config(), list(eufa.outlets()))
+
+ mock_stage_groups.assert_called_once_with("SWT", [derived_group])
+ mock_stage_ratings.assert_not_called()
+
+
+def test_publish_outlet_rating_dependencies_publishes_ratings_before_groups(mocker):
+ derived_group = LocationGroupConfig.from_dict({"categoryId": "Rating", "id": "Rating-EUFA-TG1"})
+ derived_rating = RatingConfig.from_dict({"id": "EUFA.Elev;Opening.Standard.Production"})
+ mocker.patch("outlet_rating.derive_rating_location_groups", return_value=[derived_group])
+ mocker.patch("outlet_rating.derive_ratings_from_location_groups", return_value=[derived_rating])
+
+ calls = []
+ mocker.patch("rating.publish_staged_ratings", side_effect=lambda *a, **k: calls.append("rating"))
+ mocker.patch("location_group.publish_staged_location_groups", side_effect=lambda *a, **k: calls.append("group"))
+
+ office = _office_with_new_resources()
+ eufa = next(project for project in office.projects() if project.id == "EUFA")
+
+ main._publish_outlet_rating_dependencies(eufa, _config(), list(eufa.outlets()))
+
+ assert calls == ["rating", "group"]
+
+
+def test_publish_outlet_rating_dependencies_skips_when_no_outlet_has_a_rating_group(mocker):
+ mocker.patch("outlet_rating.derive_rating_location_groups", return_value=[])
+ mock_publish_ratings = mocker.patch("rating.publish_staged_ratings")
+ mock_publish_groups = mocker.patch("location_group.publish_staged_location_groups")
+
+ office = _office_with_new_resources()
+ eufa = next(project for project in office.projects() if project.id == "EUFA")
+
+ main._publish_outlet_rating_dependencies(eufa, _config(), [])
+
+ mock_publish_ratings.assert_not_called()
+ mock_publish_groups.assert_not_called()
+
+
+def test_stage_project_data_stages_outlet_rating_dependencies_after_outlets(mocker):
+ mocks = _patch_stage(mocker)
+ mock_dependencies = mocker.patch("main._stage_outlet_rating_dependencies")
+
+ office = _office_with_new_resources()
+ eufa = next(project for project in office.projects() if project.id == "EUFA")
+
+ main._stage_project_data(eufa, _config())
+
+ mock_dependencies.assert_called_once()
+ args = mock_dependencies.call_args.args
+ assert args[0] is eufa
+ assert [item.id for item in args[2]] == [item.id for item in mocks["outlets"].call_args.args[1]]
+
+
+def test_publish_project_data_publishes_outlet_rating_dependencies_after_outlets(mocker):
+ mock_publish_outlets = mocker.patch("outlet.publish_staged_outlets")
+ mocker.patch("turbine.publish_staged_turbines")
+ mocker.patch("turbine.publish_staged_turbine_changes")
+ mocker.patch("lock.publish_staged_locks")
+ mocker.patch("gate_change.publish_staged_gate_changes")
+ mocker.patch("water_user.publish_staged_water_users")
+ mocker.patch("water_contract.publish_staged_water_contracts")
+ mocker.patch("timeseries.publish_staged_timeseries")
+ mocker.patch("rating.publish_staged_ratings")
+ mocker.patch("location_level.publish_staged_location_levels")
+ mocker.patch("location.publish_staged_locations")
+ mocker.patch("project.publish_staged_projects")
+ mocker.patch("clob.publish_staged_clobs")
+ mocker.patch("property.publish_staged_properties")
+ mock_dependencies = mocker.patch("main._publish_outlet_rating_dependencies")
+
+ office = _office_with_new_resources()
+ eufa = next(project for project in office.projects() if project.id == "EUFA")
+
+ main._publish_project_data(eufa, _config())
+
+ mock_dependencies.assert_called_once()
+ args = mock_dependencies.call_args.args
+ assert args[0] is eufa
+ assert [item.id for item in args[2]] == [item.id for item in mock_publish_outlets.call_args.args[1]]
+
+
+def test_stage_office_data_passes_groups_through(mocker):
+ mock_location_groups = mocker.patch("location_group.stage_location_groups")
+ mock_timeseries_groups = mocker.patch("timeseries_group.stage_timeseries_groups")
+ mocker.patch("property.stage_properties")
+
+ office = _office_with_new_resources()
+
+ main._stage_office_data(office)
+
+ assert [item.id for item in mock_location_groups.call_args.args[1]] == ["GROUP1"]
+ assert [item.id for item in mock_timeseries_groups.call_args.args[1]] == ["GROUP1"]
+
+
+def test_publish_office_data_passes_groups_through(mocker):
+ mock_location_groups = mocker.patch("location_group.publish_staged_location_groups")
+ mock_timeseries_groups = mocker.patch("timeseries_group.publish_staged_timeseries_groups")
+ mocker.patch("property.publish_staged_properties")
+
+ office = _office_with_new_resources()
+
+ main._publish_office_data(office)
+
+ assert [item.id for item in mock_location_groups.call_args.args[1]] == ["GROUP1"]
+ assert [item.id for item in mock_timeseries_groups.call_args.args[1]] == ["GROUP1"]
+
+
def test_data_path_defaults_to_the_config_setting(mocker, monkeypatch):
monkeypatch.delenv("ETL_DATA_PATH", raising=False)
monkeypatch.setenv("ETL_CONFIG_PATH", str(
@@ -143,7 +379,7 @@ def test_data_path_defaults_to_the_config_setting(mocker, monkeypatch):
def test_data_path_env_overrides_the_config_setting(mocker, monkeypatch):
"""
A committed settings.path is written for the container (compose mounts
- ./cda-etl/data/sample-app at /data/sample-app). A local run needs to point elsewhere
+ ./cda-etl/data/sample-data at /data/sample-app). A local run needs to point elsewhere
without editing committed config.
"""
monkeypatch.setenv("ETL_DATA_PATH", "./data/sample-app")
@@ -158,6 +394,25 @@ def test_data_path_env_overrides_the_config_setting(mocker, monkeypatch):
mock_root.assert_called_once_with("./data/sample-app")
+def test_initialize_runtime_disables_retrying_a_definitive_404(mocker, monkeypatch):
+ """
+ Unwired, this shim just sits there tested but inert: cwms-python keeps
+ retrying (and warning about) a 404 six times per chunk, and every retry
+ logs at WARNING because the vendor's own noisy loop is still the one
+ running.
+ """
+ monkeypatch.setenv("ETL_CONFIG_PATH", str(
+ __import__("pathlib").Path(__file__).resolve().parents[1] / "resources" / "download_config_valid.yml"))
+ monkeypatch.setenv("DEST_CDA_URL", "http://dest.test/cwms-data")
+ mocker.patch("utils.filesystem_store.set_storage_root")
+ mocker.patch("utils.threading_util.init_executor")
+ mock_disable_retry = mocker.patch("utils.cwms_compat.disable_retry_on_missing_data")
+
+ main._initialize_runtime()
+
+ mock_disable_retry.assert_called_once_with()
+
+
def test_phase_marker_is_restored_afterwards():
import utils.log_util as log_util
diff --git a/cda-etl/tests/cda_etl/test_outlet.py b/cda-etl/tests/cda_etl/test_outlet.py
new file mode 100644
index 000000000..1ae322ca3
--- /dev/null
+++ b/cda-etl/tests/cda_etl/test_outlet.py
@@ -0,0 +1,99 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+from unittest.mock import ANY
+from unittest.mock import MagicMock
+
+import outlet
+from config import OutletConfig
+
+
+def test_stage_outlets(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ outlets = [OutletConfig(id="TestOutlet", enabled=True, raw={})]
+
+ outlet.stage_outlets("SWT", outlets)
+
+ mock_execute.assert_called_once_with(outlet._download_one_outlet, [["SWT", "TestOutlet"]], label=ANY, tally=ANY)
+
+
+def test_publish_staged_outlets(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ outlets = [OutletConfig(id="TestOutlet", enabled=True, raw={})]
+
+ outlet.publish_staged_outlets("SWT", outlets)
+
+ mock_execute.assert_called_once_with(outlet._upload_one_outlet, [["SWT", "TestOutlet"]], label=ANY, tally=ANY)
+
+
+def test_stage_outlets_invalid_format(mocker):
+ mock_warning = mocker.patch.object(outlet.logger, "warning")
+
+ outlet.stage_outlets("SWT", [OutletConfig(id="", enabled=True, raw={})])
+
+ assert mock_warning.called
+
+
+def test_nothing_configured_is_not_a_warning(caplog):
+ import logging
+ caplog.set_level(logging.DEBUG)
+
+ outlet.stage_outlets("SWT", [])
+ outlet.publish_staged_outlets("SWT", [])
+
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
+
+
+def test_download_one_outlet_always_refreshes_from_cwms(mocker):
+ mock_write_json = mocker.patch("utils.filesystem_store.write_json")
+ mock_cwms_get = mocker.patch("cwms.get_outlet")
+
+ mock_response = MagicMock()
+ mock_response.json = {"name": "FreshOutlet"}
+ mock_cwms_get.return_value = mock_response
+
+ outlet._download_one_outlet(["SWT", "CachedOutlet"])
+
+ mock_cwms_get.assert_called_once_with("SWT", "CachedOutlet")
+ mock_write_json.assert_called_once_with({"name": "FreshOutlet"}, "SWT", "Outlets", "CachedOutlet")
+
+
+def test_upload_one_outlet(mocker):
+ """
+ cwms.store_outlet() posts without pinning api_version and would default to
+ v2, but the outlet resource only registers a v1 JSON formatter server-side -
+ so publishing has to bypass it and call api.post directly with api_version=1.
+ """
+ mock_api_post = mocker.patch("cwms.api.post")
+ mocker.patch("utils.filesystem_store.read_json", return_value={"name": "TestOutlet"})
+
+ outlet._upload_one_outlet(["SWT", "TestOutlet"])
+
+ mock_api_post.assert_called_once_with(
+ "projects/outlets", {"name": "TestOutlet"}, {"fail-if-exists": False}, api_version=1
+ )
+
+
+def test_upload_one_outlet_raises_file_not_found_when_nothing_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+
+ try:
+ outlet._upload_one_outlet(["SWT", "TestOutlet"])
+ except FileNotFoundError:
+ return
+
+ raise AssertionError("Expected FileNotFoundError")
diff --git a/cda-etl/tests/cda_etl/test_outlet_rating.py b/cda-etl/tests/cda_etl/test_outlet_rating.py
new file mode 100644
index 000000000..686506d49
--- /dev/null
+++ b/cda-etl/tests/cda_etl/test_outlet_rating.py
@@ -0,0 +1,148 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import outlet_rating
+from config import LocationGroupConfig, OutletConfig
+
+
+def test_derive_rating_location_groups_reads_the_outlets_rating_group_id(mocker):
+ mock_read = mocker.patch(
+ "utils.filesystem_store.read_json",
+ return_value={"rating-group-id": {"office-id": "SWT", "name": "Rating-EUFA-TG1"}},
+ )
+
+ groups = outlet_rating.derive_rating_location_groups("SWT", [OutletConfig(id="EUFA-TG1", enabled=True, raw={})])
+
+ mock_read.assert_called_once_with("SWT", "Outlets", "EUFA-TG1")
+ assert len(groups) == 1
+ assert groups[0].category_id == "Rating"
+ assert groups[0].id == "Rating-EUFA-TG1"
+
+
+def test_derive_rating_location_groups_dedupes_shared_groups(mocker):
+ mocker.patch(
+ "utils.filesystem_store.read_json",
+ return_value={"rating-group-id": {"office-id": "SWT", "name": "Rating-EUFA"}},
+ )
+
+ groups = outlet_rating.derive_rating_location_groups(
+ "SWT",
+ [
+ OutletConfig(id="EUFA-TG1", enabled=True, raw={}),
+ OutletConfig(id="EUFA-TG2", enabled=True, raw={}),
+ ],
+ )
+
+ assert [group.id for group in groups] == ["Rating-EUFA"]
+
+
+def test_derive_rating_location_groups_skips_outlets_with_no_rating_association(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value={"location": {"name": "EUFA-TG1"}})
+
+ groups = outlet_rating.derive_rating_location_groups("SWT", [OutletConfig(id="EUFA-TG1", enabled=True, raw={})])
+
+ assert groups == []
+
+
+def test_derive_rating_location_groups_skips_outlets_not_yet_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+
+ groups = outlet_rating.derive_rating_location_groups("SWT", [OutletConfig(id="EUFA-TG1", enabled=True, raw={})])
+
+ assert groups == []
+
+
+def test_derive_rating_location_groups_skips_items_with_no_id():
+ groups = outlet_rating.derive_rating_location_groups("SWT", [OutletConfig(id="", enabled=True, raw={})])
+
+ assert groups == []
+
+
+def test_derive_ratings_from_location_groups_reads_the_shared_loc_alias_id(mocker):
+ mock_read = mocker.patch(
+ "utils.filesystem_store.read_json",
+ return_value=[
+ {"id": "Rating-EUFA-TG1", "shared-loc-alias-id": "EUFA.Elev;Opening.Standard.Production"},
+ {"id": "Other-Group", "shared-loc-alias-id": "SHOULD.NOT.BE.INCLUDED"},
+ ],
+ )
+ groups = [LocationGroupConfig.from_dict({"categoryId": "Rating", "id": "Rating-EUFA-TG1"})]
+
+ ratings = outlet_rating.derive_ratings_from_location_groups("SWT", groups)
+
+ mock_read.assert_called_once_with("SWT", "LocationGroups", "Rating")
+ assert [rating.id for rating in ratings] == ["EUFA.Elev;Opening.Standard.Production"]
+
+
+def test_derive_ratings_from_location_groups_are_period_of_record(mocker):
+ """
+ These are structural opening/discharge curves, not window-bound data - a
+ windowed fetch against the project's settings window can miss the curve's
+ actual effective dates and silently stage nothing (rating.py treats "no
+ data in this window" as a normal skip, not an error), so every derived
+ rating has to be period-of-record like every hand-listed rating in
+ sample-app.yml.
+ """
+ mocker.patch(
+ "utils.filesystem_store.read_json",
+ return_value=[{"id": "Rating-EUFA-TG1", "shared-loc-alias-id": "EUFA.Elev;Opening.Standard.Production"}],
+ )
+ groups = [LocationGroupConfig.from_dict({"categoryId": "Rating", "id": "Rating-EUFA-TG1"})]
+
+ ratings = outlet_rating.derive_ratings_from_location_groups("SWT", groups)
+
+ assert ratings[0].period_of_record is True
+
+
+def test_derive_ratings_from_location_groups_dedupes_shared_alias_ids(mocker):
+ mocker.patch(
+ "utils.filesystem_store.read_json",
+ return_value=[
+ {"id": "Rating-EUFA-TG1", "shared-loc-alias-id": "EUFA.Elev;Opening.Standard.Production"},
+ {"id": "Rating-EUFA-TG2", "shared-loc-alias-id": "EUFA.Elev;Opening.Standard.Production"},
+ ],
+ )
+ groups = [
+ LocationGroupConfig.from_dict({"categoryId": "Rating", "id": "Rating-EUFA-TG1"}),
+ LocationGroupConfig.from_dict({"categoryId": "Rating", "id": "Rating-EUFA-TG2"}),
+ ]
+
+ ratings = outlet_rating.derive_ratings_from_location_groups("SWT", groups)
+
+ assert [rating.id for rating in ratings] == ["EUFA.Elev;Opening.Standard.Production"]
+
+
+def test_derive_ratings_from_location_groups_skips_groups_with_no_alias_set(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=[{"id": "Rating-EUFA-TG1"}])
+ groups = [LocationGroupConfig.from_dict({"categoryId": "Rating", "id": "Rating-EUFA-TG1"})]
+
+ ratings = outlet_rating.derive_ratings_from_location_groups("SWT", groups)
+
+ assert ratings == []
+
+
+def test_derive_ratings_from_location_groups_skips_when_category_not_yet_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+ groups = [LocationGroupConfig.from_dict({"categoryId": "Rating", "id": "Rating-EUFA-TG1"})]
+
+ ratings = outlet_rating.derive_ratings_from_location_groups("SWT", groups)
+
+ assert ratings == []
+
+
+def test_derive_ratings_from_location_groups_short_circuits_with_no_groups():
+ assert outlet_rating.derive_ratings_from_location_groups("SWT", []) == []
diff --git a/cda-etl/tests/cda_etl/test_pump.py b/cda-etl/tests/cda_etl/test_pump.py
new file mode 100644
index 000000000..c3d164cc6
--- /dev/null
+++ b/cda-etl/tests/cda_etl/test_pump.py
@@ -0,0 +1,61 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import pump
+
+
+def test_disassociate_pump_calls_delete_with_expected_endpoint_and_params(mocker):
+ mock_delete = mocker.patch("cwms.api.delete")
+
+ pump.disassociate_pump("SWT", "EUFA", "ENTITY1", "CONTRACT1", "EUFA-Pump1", "IN")
+
+ mock_delete.assert_called_once_with(
+ endpoint="projects/SWT/EUFA/water-user/ENTITY1/contracts/CONTRACT1/pumps/EUFA-Pump1",
+ params={"pump-type": "IN", "delete-accounting": False},
+ api_version=1,
+ )
+
+
+def test_disassociate_pump_encodes_ids_with_spaces(mocker):
+ mock_delete = mocker.patch("cwms.api.delete")
+
+ pump.disassociate_pump("SWT", "EUFA", "ENTITY ONE", "CONTRACT ONE", "PUMP ONE", "OUT BELOW", delete_accounting=True)
+
+ mock_delete.assert_called_once_with(
+ endpoint="projects/SWT/EUFA/water-user/ENTITY%20ONE/contracts/CONTRACT%20ONE/pumps/PUMP%20ONE",
+ params={"pump-type": "OUT BELOW", "delete-accounting": True},
+ api_version=1,
+ )
+
+
+def test_extract_pump_associations_reads_known_location_fields():
+ contract_data = {
+ "pump-in-location": {"office-id": "SWT", "name": "EUFA-PumpIn"},
+ "pump-out-location": {"office-id": "SWT", "name": "EUFA-PumpOut"},
+ }
+
+ associations = pump.extract_pump_associations(contract_data)
+
+ assert associations == [
+ {"type": "IN", "location": {"office-id": "SWT", "name": "EUFA-PumpIn"}},
+ {"type": "OUT", "location": {"office-id": "SWT", "name": "EUFA-PumpOut"}},
+ ]
+
+
+def test_extract_pump_associations_handles_no_pumps():
+ assert pump.extract_pump_associations({}) == []
+ assert pump.extract_pump_associations(None) == []
diff --git a/cda-etl/tests/cda_etl/test_rating.py b/cda-etl/tests/cda_etl/test_rating.py
index 168c890ec..1383fafb0 100644
--- a/cda-etl/tests/cda_etl/test_rating.py
+++ b/cda-etl/tests/cda_etl/test_rating.py
@@ -41,27 +41,33 @@ def test_rating_config_requires_a_literal_id():
def test_download_one_rating_por(mocker):
- mock_write_json = mocker.patch("utils.filesystem_store.write_json")
+ mock_write_xml = mocker.patch("utils.filesystem_store.write_xml")
mock_get_ratings_xml = mocker.patch("cwms.get_ratings_xml", return_value="xml")
rating._download_one_rating(["SWT", "EUFA.Stage;Flow.Standard.Production", None, None, True])
mock_get_ratings_xml.assert_called_once_with("EUFA.Stage;Flow.Standard.Production", "SWT")
- mock_write_json.assert_called_once_with(
- {"xml": "xml"},
+ mock_write_xml.assert_called_once_with(
+ "xml",
"SWT",
"Ratings",
- "EUFA.Stage;Flow.Standard.Production.por",
+ "EUFA.Stage;Flow.Standard.Production",
)
def test_upload_one_rating_uses_xml_only(mocker):
- mock_store_rating = mocker.patch("cwms.store_rating")
- mocker.patch("utils.filesystem_store.read_json", return_value={"xml": "xml"})
+ mock_post = mocker.patch("cwms.api.post")
+ mock_read_xml = mocker.patch("utils.filesystem_store.read_xml", return_value="xml")
rating._upload_one_rating(["SWT", "EUFA.Stage;Flow.Standard.Production", None, None, True])
- mock_store_rating.assert_called_once_with("xml", store_template=True)
+ mock_read_xml.assert_called_once_with("SWT", "Ratings", "EUFA.Stage;Flow.Standard.Production")
+ mock_post.assert_called_once_with(
+ "ratings",
+ "xml",
+ {"store-template": True, "fail-if-exists": False},
+ api_version=102,
+ )
def _api_error(status_code: int, body: str = ""):
@@ -85,7 +91,7 @@ def test_missing_rating_curve_is_not_a_failure(mocker, caplog):
import logging
caplog.set_level(logging.DEBUG)
mocker.patch("cwms.get_ratings_xml", side_effect=_api_error(404, '{"message":"Not found."}'))
- mock_write = mocker.patch("utils.filesystem_store.write_json")
+ mock_write = mocker.patch("utils.filesystem_store.write_xml")
begin = rating._parse_timestamp("2026-07-01", "start")
end = rating._parse_timestamp("2026-07-15", "end")
@@ -99,7 +105,7 @@ def test_missing_por_rating_curve_is_not_a_failure(mocker, caplog):
import logging
caplog.set_level(logging.DEBUG)
mocker.patch("cwms.get_ratings_xml", side_effect=_api_error(404, '{"message":"Not found."}'))
- mock_write = mocker.patch("utils.filesystem_store.write_json")
+ mock_write = mocker.patch("utils.filesystem_store.write_xml")
rating._download_one_rating(["SWT", "EUFA.Elev;Stor.Linear.Production", None, None, True])
@@ -108,7 +114,7 @@ def test_missing_por_rating_curve_is_not_a_failure(mocker, caplog):
def test_rating_server_errors_still_propagate(mocker):
mocker.patch("cwms.get_ratings_xml", side_effect=_api_error(500, '{"message":"Database Error"}'))
- mocker.patch("utils.filesystem_store.write_json")
+ mocker.patch("utils.filesystem_store.write_xml")
with pytest.raises(cwms.api.ApiError):
rating._download_one_rating(["SWT", "EUFA.Elev;Area.Linear.Production", None, None, True])
@@ -127,7 +133,7 @@ def test_ambiguous_500_is_treated_as_a_missing_rating(mocker, caplog):
import logging
caplog.set_level(logging.WARNING)
mocker.patch("cwms.get_ratings_xml", side_effect=_api_error(500, AMBIGUOUS_500))
- mock_write = mocker.patch("utils.filesystem_store.write_json")
+ mock_write = mocker.patch("utils.filesystem_store.write_xml")
rating._download_one_rating(["SWT", "EUFA.Elev;Area.Linear.Production", None, None, True])
@@ -142,7 +148,7 @@ def test_ambiguous_500_is_reported_at_warning_not_info(mocker, caplog):
import logging
caplog.set_level(logging.DEBUG)
mocker.patch("cwms.get_ratings_xml", side_effect=_api_error(500, AMBIGUOUS_500))
- mocker.patch("utils.filesystem_store.write_json")
+ mocker.patch("utils.filesystem_store.write_xml")
rating._download_one_rating(["SWT", "EUFA.Elev;Area.Linear.Production", None, None, True])
@@ -159,7 +165,7 @@ def test_an_unrelated_500_still_fails(mocker):
"cwms.get_ratings_xml",
side_effect=_api_error(500, '{"message":"Database Error"}'),
)
- mocker.patch("utils.filesystem_store.write_json")
+ mocker.patch("utils.filesystem_store.write_xml")
with pytest.raises(cwms.api.ApiError):
rating._download_one_rating(["SWT", "EUFA.Elev;Area.Linear.Production", None, None, True])
@@ -179,7 +185,7 @@ def maybe(rating_id, office_id, begin=None, end=None):
return ""
mocker.patch("cwms.get_ratings_xml", side_effect=maybe)
- mocker.patch("utils.filesystem_store.write_json")
+ mocker.patch("utils.filesystem_store.write_xml")
threading_util.init_executor(2)
rating.stage_ratings(
@@ -200,7 +206,7 @@ def test_a_single_ambiguous_rating_is_not_flagged(mocker, caplog):
import logging
caplog.set_level(logging.WARNING)
mocker.patch("cwms.get_ratings_xml", side_effect=_api_error(500, AMBIGUOUS_500))
- mocker.patch("utils.filesystem_store.write_json")
+ mocker.patch("utils.filesystem_store.write_xml")
threading_util.init_executor(2)
rating.stage_ratings(
@@ -217,7 +223,7 @@ def test_the_ambiguous_counter_resets_between_batches(mocker, caplog):
import logging
caplog.set_level(logging.WARNING)
mocker.patch("cwms.get_ratings_xml", side_effect=_api_error(500, AMBIGUOUS_500))
- mocker.patch("utils.filesystem_store.write_json")
+ mocker.patch("utils.filesystem_store.write_xml")
threading_util.init_executor(2)
items = [RatingConfig(id="EUFA.Elev;Area.Linear.Production", enabled=True, raw={"por": True})]
@@ -239,27 +245,27 @@ def test_ratings_are_stored_with_their_template(mocker):
True is also cwms-python's default and CDA's documented default; this was the
one place the pipeline opted out.
"""
- mock_store = mocker.patch("cwms.store_rating")
+ mock_post = mocker.patch("cwms.api.post")
mocker.patch(
- "utils.filesystem_store.read_json",
- return_value={"xml": ""},
+ "utils.filesystem_store.read_xml",
+ return_value="",
)
rating._upload_one_rating(["SWT", "EUFA.Elev;Area.Linear.Production", None, None, True])
- assert mock_store.call_args.kwargs["store_template"] is True
+ assert mock_post.call_args.args[2]["store-template"] is True
def test_the_windowed_path_also_stores_the_template(mocker):
- mock_store = mocker.patch("cwms.store_rating")
- mocker.patch("utils.filesystem_store.read_json", return_value={"xml": ""})
+ mock_post = mocker.patch("cwms.api.post")
+ mocker.patch("utils.filesystem_store.read_xml", return_value="")
begin = rating._parse_timestamp("2026-07-01", "start")
end = rating._parse_timestamp("2026-07-15", "end")
rating._upload_one_rating(["SWT", "EUFA.Elev;Area.Linear.Production", begin, end, False])
- assert mock_store.call_args.kwargs["store_template"] is True
+ assert mock_post.call_args.args[2]["store-template"] is True
def test_nothing_configured_is_not_a_warning(caplog):
diff --git a/cda-etl/tests/cda_etl/test_timeseries_group.py b/cda-etl/tests/cda_etl/test_timeseries_group.py
new file mode 100644
index 000000000..74410bed7
--- /dev/null
+++ b/cda-etl/tests/cda_etl/test_timeseries_group.py
@@ -0,0 +1,365 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+from unittest.mock import ANY, MagicMock
+
+import timeseries_group
+from config import TimeseriesGroupConfig
+
+
+def _ref(group_id: str, office_id: str = "SWT") -> timeseries_group._GroupRef:
+ return timeseries_group._GroupRef(id=group_id, group_office_id=office_id, category_office_id=office_id)
+
+
+def test_stage_timeseries_groups(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [TimeseriesGroupConfig(category_id="REGI", id="EUFA.GRP", enabled=True, raw={})]
+
+ timeseries_group.stage_timeseries_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ timeseries_group._download_timeseries_groups_in_category,
+ [["SWT", "REGI", _ref("EUFA.GRP")]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_stage_timeseries_groups_resolves_office_overrides_from_config(mocker):
+ """
+ groupOfficeId / categoryOfficeId fall back to the office being staged for,
+ but an explicit override in the config has to survive being collapsed into
+ the per-category work item.
+ """
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [
+ TimeseriesGroupConfig(
+ category_id="REGI",
+ id="EUFA.GRP",
+ enabled=True,
+ raw={"groupOfficeId": "HQ", "categoryOfficeId": "HQ2"},
+ )
+ ]
+
+ timeseries_group.stage_timeseries_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ timeseries_group._download_timeseries_groups_in_category,
+ [
+ ["SWT", "REGI", timeseries_group._GroupRef(id="EUFA.GRP", group_office_id="HQ", category_office_id="HQ2")]
+ ],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_stage_timeseries_groups_groups_named_ids_into_one_task_per_category(mocker):
+ """
+ One staged file per category means one task per category: several named ids
+ in the same category are handed to a single work item, not one each.
+ """
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [
+ TimeseriesGroupConfig(category_id="REGI", id="EUFA.GRP", enabled=True, raw={}),
+ TimeseriesGroupConfig(category_id="REGI", id="EUFA.GRP2", enabled=True, raw={}),
+ TimeseriesGroupConfig(category_id="OTHER", id="EUFA.GRP", enabled=True, raw={}),
+ ]
+
+ timeseries_group.stage_timeseries_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ timeseries_group._download_timeseries_groups_in_category,
+ [
+ ["SWT", "OTHER", _ref("EUFA.GRP")],
+ ["SWT", "REGI", _ref("EUFA.GRP"), _ref("EUFA.GRP2")],
+ ],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_stage_timeseries_groups_all_in_category(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [TimeseriesGroupConfig(category_id="REGI", id="*", enabled=True, raw={}, all_in_category=True)]
+
+ timeseries_group.stage_timeseries_groups("SWT", groups)
+
+ assert mock_execute.call_count == 1
+ mock_execute.assert_called_once_with(
+ timeseries_group._download_all_timeseries_groups_in_category,
+ [["SWT", "REGI"]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_stage_timeseries_groups_skips_named_ids_covered_by_an_all_category(mocker):
+ """
+ Both declarations resolve to the same file, so the category-wide read - which
+ already contains the named ids - is the only task.
+ """
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [
+ TimeseriesGroupConfig(category_id="REGI", id="*", enabled=True, raw={}, all_in_category=True),
+ TimeseriesGroupConfig(category_id="REGI", id="EUFA.GRP", enabled=True, raw={}),
+ ]
+
+ timeseries_group.stage_timeseries_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ timeseries_group._download_all_timeseries_groups_in_category,
+ [["SWT", "REGI"]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_publish_staged_timeseries_groups(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [TimeseriesGroupConfig(category_id="REGI", id="EUFA.GRP", enabled=True, raw={})]
+
+ timeseries_group.publish_staged_timeseries_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ timeseries_group._upload_timeseries_groups_in_category,
+ [["SWT", "REGI", _ref("EUFA.GRP")]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_publish_staged_timeseries_groups_all_in_category(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ groups = [TimeseriesGroupConfig(category_id="REGI", id="*", enabled=True, raw={}, all_in_category=True)]
+
+ timeseries_group.publish_staged_timeseries_groups("SWT", groups)
+
+ mock_execute.assert_called_once_with(
+ timeseries_group._upload_timeseries_groups_in_category,
+ [["SWT", "REGI"]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_download_timeseries_groups_in_category_writes_one_file(mocker):
+ flag = {"office-id": "SWT", "id": "EUFA.GRP.FLAG", "assigned-time-series": []}
+ enabled = {"office-id": "SWT", "id": "EUFA.GRP.ENABLED", "assigned-time-series": []}
+ mock_get = mocker.patch(
+ "cwms.get_timeseries_group", side_effect=[MagicMock(json=enabled), MagicMock(json=flag)]
+ )
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ timeseries_group._download_timeseries_groups_in_category(
+ ["SWT", "REGI", _ref("EUFA.GRP.ENABLED"), _ref("EUFA.GRP.FLAG")]
+ )
+
+ assert mock_get.call_count == 2
+ mock_get.assert_any_call(
+ group_id="EUFA.GRP.FLAG",
+ category_id="REGI",
+ office_id="SWT",
+ group_office_id="SWT",
+ category_office_id="SWT",
+ )
+ mock_write.assert_called_once_with([enabled, flag], "SWT", "TimeseriesGroups", "REGI")
+
+
+def test_download_timeseries_groups_in_category_merges_with_already_staged_records(mocker):
+ """
+ Timeseries groups are declared at office level only, but staging can still
+ be invoked more than once for the same category. A plain write would keep
+ only the last call's results.
+ """
+ existing = {"office-id": "SWT", "id": "EUFA.GRP.ENABLED"}
+ incoming = {"office-id": "SWT", "id": "EUFA.GRP.FLAG"}
+ mocker.patch("cwms.get_timeseries_group", return_value=MagicMock(json=incoming))
+ mocker.patch("utils.filesystem_store.read_json", return_value=[existing])
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ timeseries_group._download_timeseries_groups_in_category(["SWT", "REGI", _ref("EUFA.GRP.FLAG")])
+
+ mock_write.assert_called_once_with([existing, incoming], "SWT", "TimeseriesGroups", "REGI")
+
+
+def test_download_timeseries_groups_in_category_uses_resolved_office_overrides(mocker):
+ mock_get = mocker.patch("cwms.get_timeseries_group", return_value=MagicMock(json={"id": "GRP"}))
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+ mocker.patch("utils.filesystem_store.write_json")
+
+ timeseries_group._download_timeseries_groups_in_category(
+ ["SWT", "REGI", timeseries_group._GroupRef(id="GRP", group_office_id="HQ", category_office_id="HQ2")]
+ )
+
+ mock_get.assert_called_once_with(
+ group_id="GRP",
+ category_id="REGI",
+ office_id="SWT",
+ group_office_id="HQ",
+ category_office_id="HQ2",
+ )
+
+
+def test_download_all_timeseries_groups_in_category(mocker):
+ flag = {"id": "EUFA.GRP.FLAG", "office-id": "SWT"}
+ enabled = {"id": "EUFA.GRP.ENABLED", "office-id": "SWT"}
+ mock_get = mocker.patch("cwms.get_timeseries_groups", return_value=MagicMock(json=[flag, enabled]))
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ timeseries_group._download_all_timeseries_groups_in_category(["SWT", "REGI"])
+
+ mock_get.assert_called_once_with(office_id="SWT", include_assigned=True, timeseries_category_like="REGI")
+ # One file for the whole category, not one per group.
+ mock_write.assert_called_once_with([enabled, flag], "SWT", "TimeseriesGroups", "REGI")
+
+
+def test_download_all_timeseries_groups_in_category_replaces_the_staged_file(mocker):
+ """
+ The listing is the authoritative snapshot, so a group that no longer exists
+ upstream must not survive on disk.
+ """
+ kept = {"id": "EUFA.GRP.FLAG", "office-id": "SWT"}
+ mocker.patch("cwms.get_timeseries_groups", return_value=MagicMock(json=[kept]))
+ mock_read = mocker.patch("utils.filesystem_store.read_json")
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ timeseries_group._download_all_timeseries_groups_in_category(["SWT", "REGI"])
+
+ mock_read.assert_not_called()
+ mock_write.assert_called_once_with([kept], "SWT", "TimeseriesGroups", "REGI")
+
+
+def test_upload_timeseries_groups_in_category_posts_each_record(mocker):
+ """
+ The REST API has no bulk store, so the one staged file is parsed and each
+ record posted on its own.
+ """
+ flag = {"office-id": "SWT", "id": "EUFA.GRP.FLAG"}
+ enabled = {"office-id": "SWT", "id": "EUFA.GRP.ENABLED"}
+ mock_store = mocker.patch("cwms.store_timeseries_groups")
+ mock_update = mocker.patch("cwms.update_timeseries_groups")
+ mock_read = mocker.patch("utils.filesystem_store.read_json", return_value=[enabled, flag])
+
+ timeseries_group._upload_timeseries_groups_in_category(["SWT", "REGI"])
+
+ mock_read.assert_called_once_with("SWT", "TimeseriesGroups", "REGI")
+ assert mock_store.call_count == 2
+ mock_store.assert_any_call(flag, fail_if_exists=True)
+ mock_store.assert_any_call(enabled, fail_if_exists=True)
+ mock_update.assert_not_called()
+
+
+def test_upload_timeseries_groups_in_category_publishes_only_the_named_ids(mocker):
+ flag = {"office-id": "SWT", "id": "EUFA.GRP.FLAG"}
+ enabled = {"office-id": "SWT", "id": "EUFA.GRP.ENABLED"}
+ mock_store = mocker.patch("cwms.store_timeseries_groups")
+ mocker.patch("utils.filesystem_store.read_json", return_value=[enabled, flag])
+
+ timeseries_group._upload_timeseries_groups_in_category(["SWT", "REGI", _ref("EUFA.GRP.FLAG")])
+
+ mock_store.assert_called_once_with(flag, fail_if_exists=True)
+
+
+def test_upload_timeseries_groups_in_category_raises_file_not_found_when_nothing_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+
+ try:
+ timeseries_group._upload_timeseries_groups_in_category(["SWT", "REGI"])
+ except FileNotFoundError:
+ return
+
+ raise AssertionError("Expected FileNotFoundError")
+
+
+def test_upload_timeseries_groups_in_category_attempts_every_record_before_failing(mocker):
+ """
+ A category can hold many groups; aborting on the first rejection would hide
+ the rest.
+ """
+ import cwms
+
+ api_error_type = cwms.api.ApiError
+ response = type(
+ "Response",
+ (),
+ {"status_code": 400, "url": "http://cda/timeseries/group", "reason": "Bad Request", "text": ""},
+ )()
+
+ bad = {"office-id": "SWT", "id": "A.BAD"}
+ good = {"office-id": "SWT", "id": "B.GOOD"}
+ mock_store = mocker.patch("cwms.store_timeseries_groups", side_effect=[api_error_type(response), None])
+ mocker.patch("utils.filesystem_store.read_json", return_value=[bad, good])
+
+ try:
+ timeseries_group._upload_timeseries_groups_in_category(["SWT", "REGI"])
+ except RuntimeError as error:
+ assert "A.BAD" in str(error)
+ else:
+ raise AssertionError("Expected RuntimeError")
+
+ assert mock_store.call_count == 2
+
+
+def test_upload_timeseries_group_patch_on_conflict(mocker):
+ import cwms
+
+ api_error_type = cwms.api.ApiError
+ response = type("Response", (), {"status_code": 409})()
+
+ flag = {"office-id": "SWT", "id": "EUFA.GRP.FLAG"}
+ mock_store = mocker.patch("cwms.store_timeseries_groups", side_effect=api_error_type(response))
+ mock_update = mocker.patch("cwms.update_timeseries_groups")
+ mocker.patch("utils.filesystem_store.read_json", return_value=[flag])
+
+ timeseries_group._upload_timeseries_groups_in_category(["SWT", "REGI", _ref("EUFA.GRP.FLAG")])
+
+ mock_store.assert_called_once()
+ mock_update.assert_called_once_with(
+ data=flag,
+ group_id="EUFA.GRP.FLAG",
+ office_id="SWT",
+ replace_assigned_ts=True,
+ )
+
+
+def test_upload_timeseries_group_reraises_non_conflict_errors(mocker):
+ import cwms
+
+ api_error_type = cwms.api.ApiError
+ response = type("Response", (), {"status_code": 500, "url": "u", "reason": "r", "text": ""})()
+
+ flag = {"office-id": "SWT", "id": "EUFA.GRP.FLAG"}
+ mocker.patch("cwms.store_timeseries_groups", side_effect=api_error_type(response))
+ mock_update = mocker.patch("cwms.update_timeseries_groups")
+ mocker.patch("utils.filesystem_store.read_json", return_value=[flag])
+
+ try:
+ timeseries_group._upload_timeseries_groups_in_category(["SWT", "REGI", _ref("EUFA.GRP.FLAG")])
+ except RuntimeError as error:
+ assert "EUFA.GRP.FLAG" in str(error)
+ else:
+ raise AssertionError("Expected RuntimeError")
+
+ mock_update.assert_not_called()
+
+
+def test_nothing_configured_is_not_a_warning(caplog):
+ """
+ Zero timeseries groups configured is a normal config, not something worth
+ warning about on every office that has none.
+ """
+ caplog.set_level(logging.DEBUG)
+
+ timeseries_group.stage_timeseries_groups("SWT", [])
+ timeseries_group.publish_staged_timeseries_groups("SWT", [])
+
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
diff --git a/cda-etl/tests/cda_etl/test_turbine.py b/cda-etl/tests/cda_etl/test_turbine.py
new file mode 100644
index 000000000..514a725e0
--- /dev/null
+++ b/cda-etl/tests/cda_etl/test_turbine.py
@@ -0,0 +1,287 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+import logging
+from unittest.mock import ANY
+from unittest.mock import MagicMock
+
+import pytest
+
+import cwms
+import turbine
+from config import TurbineChangeConfig, TurbineConfig
+
+
+# ==========================================================================
+# TURBINE LIST
+# ==========================================================================
+
+
+def test_stage_turbines(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ turbines = [TurbineConfig(id="TestTurbine", enabled=True, raw={})]
+
+ turbine.stage_turbines("SWT", turbines)
+
+ mock_execute.assert_called_once_with(turbine._download_one_turbine, [["SWT", "TestTurbine"]], label=ANY, tally=ANY)
+
+
+def test_publish_staged_turbines(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ turbines = [TurbineConfig(id="TestTurbine", enabled=True, raw={})]
+
+ turbine.publish_staged_turbines("SWT", turbines)
+
+ mock_execute.assert_called_once_with(turbine._upload_one_turbine, [["SWT", "TestTurbine"]], label=ANY, tally=ANY)
+
+
+def test_stage_turbines_invalid_format(mocker):
+ mock_warning = mocker.patch.object(turbine.logger, "warning")
+
+ turbine.stage_turbines("SWT", [TurbineConfig(id="", enabled=True, raw={})])
+
+ assert mock_warning.called
+
+
+def test_nothing_configured_is_not_a_warning(caplog):
+ caplog.set_level(logging.DEBUG)
+
+ turbine.stage_turbines("SWT", [])
+ turbine.publish_staged_turbines("SWT", [])
+
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
+
+
+def test_download_one_turbine_always_refreshes_from_cwms(mocker):
+ mock_write_json = mocker.patch("utils.filesystem_store.write_json")
+ mock_cwms_get = mocker.patch("cwms.get_project_turbine")
+
+ mock_response = MagicMock()
+ mock_response.json = {"name": "FreshTurbine"}
+ mock_cwms_get.return_value = mock_response
+
+ turbine._download_one_turbine(["SWT", "CachedTurbine"])
+
+ mock_cwms_get.assert_called_once_with("SWT", "CachedTurbine")
+ mock_write_json.assert_called_once_with({"name": "FreshTurbine"}, "SWT", "Turbines", "CachedTurbine")
+
+
+def test_upload_one_turbine(mocker):
+ mock_cwms_store = mocker.patch("cwms.store_project_turbine")
+ mocker.patch("utils.filesystem_store.read_json", return_value={"name": "TestTurbine"})
+
+ turbine._upload_one_turbine(["SWT", "TestTurbine"])
+
+ mock_cwms_store.assert_called_once_with({"name": "TestTurbine"}, False)
+
+
+def test_upload_one_turbine_raises_file_not_found_when_nothing_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+
+ with pytest.raises(FileNotFoundError):
+ turbine._upload_one_turbine(["SWT", "TestTurbine"])
+
+
+# ==========================================================================
+# TURBINE CHANGES
+# ==========================================================================
+
+
+def _api_error(status_code: int, body: str = ""):
+ import requests
+
+ response = requests.Response()
+ response.status_code = status_code
+ response.reason = "Not Found" if status_code == 404 else "Internal Server Error"
+ response.url = "https://cda.test/cwms-data/x"
+ response._content = body.encode()
+
+ return cwms.api.ApiError(response)
+
+
+def test_stage_turbine_changes_not_configured(mocker, caplog):
+ caplog.set_level(logging.DEBUG)
+ mock_get = mocker.patch("cwms.get_project_turbine_changes")
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ turbine.stage_turbine_changes("SWT", "EUFA", None, "2026-01-01", "2026-01-02")
+
+ mock_get.assert_not_called()
+ mock_write.assert_not_called()
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
+
+
+def test_publish_staged_turbine_changes_not_configured(mocker, caplog):
+ caplog.set_level(logging.DEBUG)
+ mock_store = mocker.patch("cwms.store_project_turbine_changes")
+ mock_read = mocker.patch("utils.filesystem_store.read_json")
+
+ turbine.publish_staged_turbine_changes("SWT", "EUFA", None, "2026-01-01", "2026-01-02")
+
+ mock_read.assert_not_called()
+ mock_store.assert_not_called()
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
+
+
+def test_stage_turbine_changes_writes_the_response(mocker):
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+ mock_get = mocker.patch("cwms.get_project_turbine_changes")
+
+ mock_response = MagicMock()
+ mock_response.json = {"turbine-changes": [{"id": "x"}]}
+ mock_get.return_value = mock_response
+
+ config = TurbineChangeConfig(
+ enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}}
+ )
+
+ turbine.stage_turbine_changes("SWT", "EUFA", config, None, None)
+
+ args, kwargs = mock_get.call_args
+ assert kwargs["name"] == "EUFA"
+ assert kwargs["office"] == "SWT"
+ assert kwargs["page_size"] is None
+ assert kwargs["unit_system"] is None
+ assert kwargs["start_time_inclusive"] is None
+ assert kwargs["end_time_inclusive"] is None
+ from datetime import datetime
+ assert kwargs["begin"] == datetime.fromisoformat("2026-01-01")
+ assert kwargs["end"] == datetime.fromisoformat("2026-01-02")
+
+ mock_write.assert_called_once_with({"turbine-changes": [{"id": "x"}]}, "SWT", "TurbineChanges", "EUFA")
+
+
+def test_stage_turbine_changes_uses_defaults_when_config_has_no_window(mocker):
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+ mock_get = mocker.patch("cwms.get_project_turbine_changes")
+ mock_response = MagicMock()
+ mock_response.json = {"turbine-changes": []}
+ mock_get.return_value = mock_response
+
+ config = TurbineChangeConfig(enabled=True, raw={})
+
+ turbine.stage_turbine_changes("SWT", "EUFA", config, "2026-02-01", "2026-02-02")
+
+ from datetime import datetime
+ _, kwargs = mock_get.call_args
+ assert kwargs["begin"] == datetime.fromisoformat("2026-02-01")
+ assert kwargs["end"] == datetime.fromisoformat("2026-02-02")
+ mock_write.assert_called_once()
+
+
+def test_missing_turbine_changes_is_not_a_failure(mocker, caplog):
+ caplog.set_level(logging.DEBUG)
+ mocker.patch("cwms.get_project_turbine_changes", side_effect=_api_error(404, '{"message":"Not found."}'))
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ config = TurbineChangeConfig(
+ enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}}
+ )
+
+ turbine.stage_turbine_changes("SWT", "EUFA", config, None, None)
+
+ mock_write.assert_not_called()
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
+
+
+def test_turbine_change_server_errors_still_propagate(mocker):
+ mocker.patch("cwms.get_project_turbine_changes", side_effect=_api_error(500, '{"message":"Database Error"}'))
+ mocker.patch("utils.filesystem_store.write_json")
+
+ config = TurbineChangeConfig(
+ enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}}
+ )
+
+ with pytest.raises(cwms.api.ApiError):
+ turbine.stage_turbine_changes("SWT", "EUFA", config, None, None)
+
+
+def test_publish_staged_turbine_changes_raises_file_not_found_when_nothing_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+
+ config = TurbineChangeConfig(
+ enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}}
+ )
+
+ with pytest.raises(FileNotFoundError):
+ turbine.publish_staged_turbine_changes("SWT", "EUFA", config, None, None)
+
+
+def test_publish_staged_turbine_changes_handles_list_response(mocker):
+ mock_store = mocker.patch("cwms.store_project_turbine_changes")
+ mocker.patch("utils.filesystem_store.read_json", return_value=[{"id": "a"}, {"id": "b"}])
+
+ config = TurbineChangeConfig(
+ enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}}
+ )
+
+ turbine.publish_staged_turbine_changes("SWT", "EUFA", config, None, None)
+
+ mock_store.assert_called_once_with([{"id": "a"}, {"id": "b"}], "SWT", "EUFA", True)
+
+
+def test_publish_staged_turbine_changes_unwraps_the_primary_key(mocker):
+ mock_store = mocker.patch("cwms.store_project_turbine_changes")
+ mocker.patch(
+ "utils.filesystem_store.read_json",
+ return_value={"turbine-changes": [{"id": "a"}]},
+ )
+
+ config = TurbineChangeConfig(
+ enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}}
+ )
+
+ turbine.publish_staged_turbine_changes("SWT", "EUFA", config, None, None)
+
+ mock_store.assert_called_once_with([{"id": "a"}], "SWT", "EUFA", True)
+
+
+def test_publish_staged_turbine_changes_falls_back_to_other_wrapper_keys(mocker):
+ mock_store = mocker.patch("cwms.store_project_turbine_changes")
+ mocker.patch(
+ "utils.filesystem_store.read_json",
+ return_value={"items": [{"id": "a"}]},
+ )
+
+ config = TurbineChangeConfig(
+ enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}}
+ )
+
+ turbine.publish_staged_turbine_changes("SWT", "EUFA", config, None, None)
+
+ mock_store.assert_called_once_with([{"id": "a"}], "SWT", "EUFA", True)
+
+
+def test_publish_staged_turbine_changes_nothing_to_publish_does_not_raise(mocker, caplog):
+ caplog.set_level(logging.DEBUG)
+ mock_store = mocker.patch("cwms.store_project_turbine_changes")
+ mocker.patch("utils.filesystem_store.read_json", return_value={"turbine-changes": []})
+
+ config = TurbineChangeConfig(
+ enabled=True, raw={"download": {"startTime": "2026-01-01", "endTime": "2026-01-02"}}
+ )
+
+ turbine.publish_staged_turbine_changes("SWT", "EUFA", config, None, None)
+
+ mock_store.assert_not_called()
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
+
+
+def test_extract_turbine_change_records_unrecognized_shape_returns_empty():
+ assert turbine._extract_turbine_change_records({"unexpected": "shape"}) == []
+ assert turbine._extract_turbine_change_records(None) == []
+ assert turbine._extract_turbine_change_records("not a list or dict") == []
diff --git a/cda-etl/tests/cda_etl/test_water_contract.py b/cda-etl/tests/cda_etl/test_water_contract.py
new file mode 100644
index 000000000..9193bb32b
--- /dev/null
+++ b/cda-etl/tests/cda_etl/test_water_contract.py
@@ -0,0 +1,222 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+from unittest.mock import ANY
+
+import water_contract
+from config import WaterUserConfig
+
+
+def _water_user(contracts):
+ return WaterUserConfig(id="ENTITY1", enabled=True, raw={"contracts": contracts})
+
+
+def test_stage_water_contracts_builds_one_work_item_per_contract(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ water_users = [_water_user([{"id": "CONTRACT1"}, {"id": "CONTRACT2"}])]
+
+ water_contract.stage_water_contracts("SWT", "EUFA", water_users)
+
+ args, kwargs = mock_execute.call_args
+ assert args[0] is water_contract._download_one_contract
+ work_items = args[1]
+ assert [(item[1], item[2], item[3].id) for item in work_items] == [
+ ("EUFA", "ENTITY1", "CONTRACT1"),
+ ("EUFA", "ENTITY1", "CONTRACT2"),
+ ]
+
+
+def test_publish_staged_water_contracts_builds_one_work_item_per_contract(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ water_users = [_water_user([{"id": "CONTRACT1"}])]
+
+ water_contract.publish_staged_water_contracts("SWT", "EUFA", water_users)
+
+ mock_execute.assert_called_once()
+ assert mock_execute.call_args.args[0] is water_contract._upload_one_contract
+
+
+def test_download_one_contract_writes_staged_file(mocker):
+ contract_data = {"office-id": "SWT", "contract-id": {"name": "CONTRACT1"}}
+ mock_get = mocker.patch("cwms.api.get", return_value=contract_data)
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+ water_user_config = _water_user([{"id": "CONTRACT1"}])
+ contract = next(water_user_config.contracts())
+
+ water_contract._download_one_contract(["SWT", "EUFA", "ENTITY1", contract, None, None])
+
+ mock_get.assert_called_once_with(
+ endpoint="projects/SWT/EUFA/water-user/ENTITY1/contracts/CONTRACT1",
+ params={},
+ api_version=1,
+ )
+ mock_write.assert_called_once_with(
+ contract_data, "SWT", "WaterContracts", "EUFA", "ENTITY1", "CONTRACT1"
+ )
+
+
+def test_download_one_contract_also_stages_accounting_when_enabled(mocker):
+ mocker.patch("cwms.api.get", return_value={})
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+ accounting_entries = {"pump-accounting": []}
+ mock_accounting = mocker.patch("cwms.get_pump_accounting")
+ mock_accounting.return_value.json = accounting_entries
+
+ water_user_config = _water_user(
+ [{"id": "CONTRACT1", "accounting": {"startTime": "2026-01-01", "endTime": "2026-02-01"}}]
+ )
+ contract = next(water_user_config.contracts())
+
+ water_contract._download_one_contract(["SWT", "EUFA", "ENTITY1", contract, None, None])
+
+ mock_accounting.assert_called_once_with("SWT", "EUFA", "ENTITY1", "CONTRACT1", "2026-01-01", "2026-02-01")
+ assert mock_write.call_args_list[-1].args == (
+ accounting_entries, "SWT", "WaterSupplyAccounting", "EUFA", "ENTITY1", "CONTRACT1"
+ )
+
+
+def test_download_one_contract_accounting_falls_back_to_default_window(mocker):
+ mocker.patch("cwms.api.get", return_value={})
+ mocker.patch("utils.filesystem_store.write_json")
+ mock_accounting = mocker.patch("cwms.get_pump_accounting")
+ mock_accounting.return_value.json = {}
+
+ water_user_config = _water_user([{"id": "CONTRACT1", "accounting": {"enabled": True}}])
+ contract = next(water_user_config.contracts())
+
+ water_contract._download_one_contract(
+ ["SWT", "EUFA", "ENTITY1", contract, "2026-01-01", "2026-06-01"]
+ )
+
+ mock_accounting.assert_called_once_with("SWT", "EUFA", "ENTITY1", "CONTRACT1", "2026-01-01", "2026-06-01")
+
+
+def test_download_one_contract_accounting_skips_on_no_data(mocker):
+ mocker.patch("cwms.api.get", return_value={})
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+ mocker.patch("cwms.get_pump_accounting", side_effect=RuntimeError('"message":"Not found."'))
+
+ water_user_config = _water_user(
+ [{"id": "CONTRACT1", "accounting": {"startTime": "2026-01-01", "endTime": "2026-02-01"}}]
+ )
+ contract = next(water_user_config.contracts())
+
+ water_contract._download_one_contract(["SWT", "EUFA", "ENTITY1", contract, None, None])
+
+ # Only the contract file was written; accounting was skipped, not raised.
+ mock_write.assert_called_once()
+
+
+def test_upload_one_contract_posts_the_staged_record(mocker):
+ contract_data = {"office-id": "SWT"}
+ mock_post = mocker.patch("cwms.api.post")
+ mocker.patch("utils.filesystem_store.read_json", return_value=contract_data)
+ water_user_config = _water_user([{"id": "CONTRACT1"}])
+ contract = next(water_user_config.contracts())
+
+ water_contract._upload_one_contract(["SWT", "EUFA", "ENTITY1", contract, None, None])
+
+ mock_post.assert_called_once_with(
+ endpoint="projects/SWT/EUFA/water-user/ENTITY1/contracts",
+ data=contract_data,
+ params={"fail-if-exists": False, "ignore-nulls": False},
+ api_version=1,
+ )
+
+
+def test_upload_one_contract_raises_file_not_found_when_nothing_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+ water_user_config = _water_user([{"id": "CONTRACT1"}])
+ contract = next(water_user_config.contracts())
+
+ try:
+ water_contract._upload_one_contract(["SWT", "EUFA", "ENTITY1", contract, None, None])
+ except FileNotFoundError:
+ return
+
+ raise AssertionError("Expected FileNotFoundError")
+
+
+def test_upload_one_contract_disassociates_pumps_marked_disabled(mocker):
+ mocker.patch("cwms.api.post")
+ mocker.patch("utils.filesystem_store.read_json", return_value={})
+ mock_disassociate = mocker.patch("pump.disassociate_pump")
+
+ water_user_config = _water_user(
+ [
+ {
+ "id": "CONTRACT1",
+ "pumps": [
+ {"id": "EUFA-PumpIn", "type": "IN", "enabled": False},
+ {"id": "EUFA-PumpOut", "type": "OUT"},
+ ],
+ }
+ ]
+ )
+ contract = next(water_user_config.contracts())
+
+ water_contract._upload_one_contract(["SWT", "EUFA", "ENTITY1", contract, None, None])
+
+ mock_disassociate.assert_called_once_with("SWT", "EUFA", "ENTITY1", "CONTRACT1", "EUFA-PumpIn", "IN")
+
+
+def test_upload_one_contract_publishes_staged_accounting(mocker):
+ mocker.patch("cwms.api.post")
+ accounting_data = {"pump-accounting": []}
+
+ def fake_read_json(*parts):
+ if parts[1] == "WaterSupplyAccounting":
+ return accounting_data
+ return {}
+
+ mocker.patch("utils.filesystem_store.read_json", side_effect=fake_read_json)
+ mock_store_accounting = mocker.patch("cwms.store_pump_accounting")
+
+ water_user_config = _water_user(
+ [{"id": "CONTRACT1", "accounting": {"startTime": "2026-01-01", "endTime": "2026-02-01"}}]
+ )
+ contract = next(water_user_config.contracts())
+
+ water_contract._upload_one_contract(["SWT", "EUFA", "ENTITY1", contract, None, None])
+
+ mock_store_accounting.assert_called_once_with("SWT", "EUFA", "ENTITY1", "CONTRACT1", accounting_data)
+
+
+def test_resolve_window_translates_now():
+ start, end = water_contract._resolve_window("2026-01-01", "now")
+
+ assert start == "2026-01-01"
+ assert end != "now"
+
+
+def test_resolve_window_requires_a_value():
+ try:
+ water_contract._resolve_window(None, "2026-01-01")
+ except ValueError:
+ return
+
+ raise AssertionError("Expected ValueError")
+
+
+def test_nothing_configured_is_not_a_warning(caplog):
+ import logging
+ caplog.set_level(logging.DEBUG)
+
+ water_contract.stage_water_contracts("SWT", "EUFA", [])
+ water_contract.publish_staged_water_contracts("SWT", "EUFA", [])
+
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]
diff --git a/cda-etl/tests/cda_etl/test_water_user.py b/cda-etl/tests/cda_etl/test_water_user.py
new file mode 100644
index 000000000..ddee2d43b
--- /dev/null
+++ b/cda-etl/tests/cda_etl/test_water_user.py
@@ -0,0 +1,111 @@
+# MIT License
+# Copyright (c) 2026 Hydrologic Engineering Center
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+# The above copyright notice and this permission notice shall be included in all
+# copies or substantial portions of the Software.
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+# SOFTWARE.
+from unittest.mock import ANY
+
+import water_user
+from config import WaterUserConfig
+
+
+def test_stage_water_users(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ water_users = [WaterUserConfig(id="ENTITY1", enabled=True, raw={})]
+
+ water_user.stage_water_users("SWT", "EUFA", water_users)
+
+ mock_execute.assert_called_once_with(
+ water_user._download_one_water_user,
+ [["SWT", "EUFA", "ENTITY1"]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_publish_staged_water_users(mocker):
+ mock_execute = mocker.patch("utils.threading_util.execute_tasks")
+ water_users = [WaterUserConfig(id="ENTITY1", enabled=True, raw={})]
+
+ water_user.publish_staged_water_users("SWT", "EUFA", water_users)
+
+ mock_execute.assert_called_once_with(
+ water_user._upload_one_water_user,
+ [["SWT", "EUFA", "ENTITY1"]],
+ label=ANY, tally=ANY,
+ )
+
+
+def test_download_one_water_user_writes_staged_file(mocker):
+ entity = {"office-id": "SWT", "entity-name": "ENTITY1"}
+ mock_get = mocker.patch("cwms.api.get", return_value=entity)
+ mock_write = mocker.patch("utils.filesystem_store.write_json")
+
+ water_user._download_one_water_user(["SWT", "EUFA", "ENTITY1"])
+
+ mock_get.assert_called_once_with(
+ endpoint="projects/SWT/EUFA/water-user/ENTITY1",
+ params={},
+ api_version=1,
+ )
+ mock_write.assert_called_once_with(entity, "SWT", "WaterUsers", "EUFA", "ENTITY1")
+
+
+def test_download_one_water_user_encodes_id_with_spaces(mocker):
+ mock_get = mocker.patch("cwms.api.get", return_value={})
+ mocker.patch("utils.filesystem_store.write_json")
+
+ water_user._download_one_water_user(["SWT", "EUFA", "ENTITY ONE"])
+
+ mock_get.assert_called_once_with(
+ endpoint="projects/SWT/EUFA/water-user/ENTITY%20ONE",
+ params={},
+ api_version=1,
+ )
+
+
+def test_upload_one_water_user_posts_the_staged_record(mocker):
+ entity = {"office-id": "SWT", "entity-name": "ENTITY1"}
+ mock_post = mocker.patch("cwms.api.post")
+ mocker.patch("utils.filesystem_store.read_json", return_value=entity)
+
+ water_user._upload_one_water_user(["SWT", "EUFA", "ENTITY1"])
+
+ mock_post.assert_called_once_with(
+ endpoint="projects/SWT/EUFA/water-user",
+ data=entity,
+ params={"fail-if-exists": False},
+ api_version=1,
+ )
+
+
+def test_upload_one_water_user_raises_file_not_found_when_nothing_staged(mocker):
+ mocker.patch("utils.filesystem_store.read_json", return_value=None)
+
+ try:
+ water_user._upload_one_water_user(["SWT", "EUFA", "ENTITY1"])
+ except FileNotFoundError:
+ return
+
+ raise AssertionError("Expected FileNotFoundError")
+
+
+def test_nothing_configured_is_not_a_warning(caplog):
+ import logging
+ caplog.set_level(logging.DEBUG)
+
+ water_user.stage_water_users("SWT", "EUFA", [])
+ water_user.publish_staged_water_users("SWT", "EUFA", [])
+
+ assert not [r for r in caplog.records if r.levelno >= logging.WARNING]