';
html += '';
if (point.name === 'Renewables') {
html += '
';
}
html += '';
});
html += '';
$('#' + inst.legendId).empty();
$('#' + inst.legendId).html(html);
} catch(e) {
console.error('Legend creation failed: ' + e);
}
};
this.calculateNetImports = function() {
var inst = this;
var total = 0;
try {
$('#data-table-externalflow').find('tr').each(function(i, o) {
var tds = $(this).find('td');
var tmp = parseFloat($(tds[0]).html().replace(',', ''));
total += tmp;
});
} catch(e) {
console.error('update failed: ' + e);
}
return total;
};
this.init();
}
/** Renewable Fuel Mix Widget */
function RenewableFuelMixWidget(renderTo, dataTableId, legendId) {
this.renderTo = renderTo;
this.dataTableId = dataTableId;
this.legendId = legendId;
this.colorMapping = {
'Coal': '#3E4B50',
'Hydro': '#1795D2',
'Natural Gas': '#6dcff6',
'Nuclear': '#F68920',
'Oil': '#62777F',
'Renewables': '#6FA943',
'Landfill Gas': '#40D397',
'Refuse': '#845536',
'Wind': '#8555A1',
'Wood': '#BF622E',
'Methane': '#b16621',
'Other': '#4c8014',
'Steam':'#800080',
'Solar': '#FBB92F'
};
this.init = function() {
try {
var inst = this;
var datax = inst.readData(inst.dataTableId);
inst.createLegend(datax);
var options = {
chart: { type: 'pie', renderTo: inst.renderTo, spacingTop: 0, marginTop: 0 },
title: {
text:'RENEWABLES',
verticalAlign:'middle',
floating: true,
y: 10,
style: { color: '#ddd', fontSize: '10px' },
},
series: [{
id: 'fuelmix',
name: 'Fuels',
data: [],
states: { hover: { halo: { size: 0 } } },
}],
plotOptions: {
series: {
animation: false,
states: { inactive: { opacity: 1 } },
},
},
};
inst.highchart = new Highcharts.Chart(options);
inst.highchart.get('fuelmix').setData(datax, true);
} catch(e) {
console.error('init failed: ' + e);
}
};
this.readData = function(dataTableId) {
var inst = this;
var data = [];
try {
$('#' + dataTableId).find('tr').each(function(i, o) {
var tds = $(this).find('td');
var obj = {};
obj.name = $(tds[0]).html();
obj.y = parseFloat($(tds[2]).html());
obj.color = inst.colorMapping[obj.name] || Highcharts.theme.colors[i + 6];
var obj1 = { name: $(tds[1]).html() };
var addToDataCoordinates = true;
$.each(data, function(i, t) {
if (t.name === obj.name) {
t.y += obj.y;
addToDataCoordinates = false;
}
});
if (addToDataCoordinates && obj1.name !== obj.name) {
data.push(obj);
}
});
var total = $(data).sum('y');
$(data).each(function(i,o){
o.y = (o.y/total)*100;
});
data.sort(function(a, b) {
var A = a.name.toUpperCase(), B = b.name.toUpperCase();
return (A B) ? +1 : 0);
});
} catch(e) {
console.error('update failed: ' + e);
}
return data;
};
this.createLegend = function(data) {
var inst = this;
try {
/** Sort data on value desc */
data.sort(function(a,b) {
var A = a.y, B = b.y;
return (A > B) ? -1 : ((A ';
$.each(data, function(i, point) {
/* show " 0) && (point.y ';
html += '
';
html += '';
});
html += '';
$('#' + inst.legendId).empty();
$('#' + inst.legendId).html(html);
} catch(e) {
console.error('Legend creation failed: ' + e);
}
};
this.init();
}
/** System Load Widget */
function SystemLoadWidget(renderTo, dataTableId, legendId) {
this.renderTo = renderTo;
this.dataTableId = dataTableId;
this.legendId = legendId;
this.init = function() {
try {
var inst = this;
var actualdata = inst.readData(inst.dataTableId[0]);
var forecastdata = inst.readData(inst.dataTableId[1]);
$(forecastdata).each(function(i, o) {
o.x += 1800000;
});
var plotVal = 1 * inst.updateLegend(actualdata, forecastdata);
var plotLabel = Highcharts.dateFormat('%H:%M', plotVal);
var options = {
chart: { type: 'line', renderTo: inst.renderTo },
plotOptions: {
series: {
states: { inactive: { opacity: 1 } },
animation: false,
marker: { states: { hover: { enabled: false } } },
},
},
series: [
{ id: 'actual', name: 'Actual', color: '#ffff00', data: actualdata },
{ id: 'forecast', name: 'Forecast', color: '#1795d2', data: forecastdata },
],
global: { useUTC: false },
xAxis: {
title: {text: null},
type: 'datetime',
showFirstLabel: true,
tickPixelInterval: 50,
tickLength: 5,
tickColor: '#465C67',
tickWidth: 1,
gridLineWidth: 0,
lineWidth: 1,
lineColor: '#465C67',
minPadding: 0,
labels: { style: { color: '#ddd', fontSize: '13px' }, y: 20 },
dateTimeLabelFormats: { hour: '%H', day: '%H' },
plotLines: [{
id:'plot-line',
value: plotVal,
color: '#7c8d91',
dashStyle: 'Dash',
width: 1,
label: {
text: plotLabel,
y: 0,
style: { color: '#ddd', fontSize: '13px' },
},
}],
},
yAxis: [{
title: { text: null },
showFirstLabel: true,
tickPixelInterval: 50,
tickLength: 5,
tickColor: '#465C67',
tickWidth: 1,
gridLineWidth: 0,
lineWidth: 1,
lineColor: '#465C67',
startOnTick: false,
minPadding: 0.01,
maxPadding: 0.08,
labels: { style: { color: '#ddd', fontSize: '13px' } },
}],
};
inst.highchart = new Highcharts.Chart(options);
inst.highchart.get('actual').setData(actualdata, false);
inst.highchart.get('forecast').setData(forecastdata, true);
} catch(e) {
console.error('init failed: ' + e);
}
};
this.readData = function(dataTableId) {
var inst = this;
var data = [];
try {
$('#' + dataTableId).find('tr').each(function(i, o) {
var tds = $(this).find('td');
var obj = {
x: ISOUtil.Date.jsonDateToMs($(tds[0]).html()),
y: parseInt($(tds[1]).html()),
};
data.push(obj);
});
} catch(e) {
console.error('update failed: ' + e);
}
return data;
};
this.updateLegend = function(actualdata, forecastdata) {
var inst = this;
var plotVal = 0;
try {
if (!actualdata || !actualdata.length) {
$('#system-demand-actual-legend').html('Actual Data Missing');
} else {
$('#system-demand-actual-legend').html('Actual (MW)');
}
if (!forecastdata || !forecastdata.length) {
$('#system-demand-forecast-legend').html('Forecast Data Missing');
} else {
$('#system-demand-forecast-legend').html('Forecasted (MW)');
}
if (actualdata.length > 0) {
var act = actualdata[actualdata.length-1];
plotVal = act.x;
var fct = forecastdata[0];
var fctflag = 1;
$.each(forecastdata, function(i, obj) {
if (act.x > (obj.x - 1800000) && act.x
2025-07-17T00:00:00.000-04:00 |
18016.589 |
2025-07-17T00:05:00.000-04:00 |
17900.036 |
2025-07-17T00:10:00.000-04:00 |
17828.529 |
2025-07-17T00:15:00.000-04:00 |
17747.172 |
2025-07-17T00:20:00.000-04:00 |
17639.486 |
2025-07-17T00:25:00.000-04:00 |
17597.346 |
2025-07-17T00:30:00.000-04:00 |
17467.8 |
2025-07-17T00:35:00.000-04:00 |
17405.371 |
2025-07-17T00:40:00.000-04:00 |
17301.177 |
2025-07-17T00:45:00.000-04:00 |
17217.127 |
2025-07-17T00:50:00.000-04:00 |
17164.198 |
2025-07-17T00:55:00.000-04:00 |
17092.97 |
2025-07-17T01:00:00.000-04:00 |
17009.174 |
2025-07-17T01:05:00.000-04:00 |
16933.207 |
2025-07-17T01:10:00.000-04:00 |
16852.395 |
2025-07-17T01:15:00.000-04:00 |
16793.846 |
2025-07-17T01:20:00.000-04:00 |
16690.142 |
2025-07-17T01:25:00.000-04:00 |
16655.221 |
2025-07-17T01:30:00.000-04:00 |
16589.613 |
2025-07-17T01:35:00.000-04:00 |
16508.634 |
2025-07-17T01:40:00.000-04:00 |
16453.279 |
2025-07-17T01:45:00.000-04:00 |
16382.713 |
2025-07-17T01:50:00.000-04:00 |
16317.723 |
2025-07-17T01:55:00.000-04:00 |
16275.793 |
2025-07-17T02:00:00.000-04:00 |
16248.975 |
2025-07-17T02:05:00.000-04:00 |
16177.447 |
2025-07-17T02:10:00.000-04:00 |
16137.298 |
2025-07-17T02:15:00.000-04:00 |
16077.605 |
2025-07-17T02:20:00.000-04:00 |
16041.757 |
2025-07-17T02:25:00.000-04:00 |
15978.018 |
2025-07-17T02:30:00.000-04:00 |
15965.753 |
2025-07-17T02:35:00.000-04:00 |
15920.771 |
2025-07-17T02:40:00.000-04:00 |
15860.695 |
2025-07-17T02:45:00.000-04:00 |
15820.007 |
2025-07-17T02:50:00.000-04:00 |
15799.399 |
2025-07-17T02:55:00.000-04:00 |
15761.946 |
2025-07-17T03:00:00.000-04:00 |
15713.362 |
2025-07-17T03:05:00.000-04:00 |
15705.759 |
2025-07-17T03:10:00.000-04:00 |
15696.228 |
2025-07-17T03:15:00.000-04:00 |
15671.877 |
2025-07-17T03:20:00.000-04:00 |
15665.693 |
2025-07-17T03:25:00.000-04:00 |
15631.12 |
2025-07-17T03:30:00.000-04:00 |
15610.654 |
2025-07-17T03:35:00.000-04:00 |
15584.369 |
2025-07-17T03:40:00.000-04:00 |
15552.427 |
2025-07-17T03:45:00.000-04:00 |
15529.925 |
2025-07-17T03:50:00.000-04:00 |
15500.695 |
2025-07-17T03:55:00.000-04:00 |
15511.784 |
2025-07-17T04:00:00.000-04:00 |
15525.032 |
2025-07-17T04:05:00.000-04:00 |
15579.391 |
2025-07-17T04:10:00.000-04:00 |
15613.661 |
2025-07-17T04:15:00.000-04:00 |
15619.539 |
2025-07-17T04:20:00.000-04:00 |
15632.554 |
2025-07-17T04:25:00.000-04:00 |
15648.694 |
2025-07-17T04:30:00.000-04:00 |
15636.879 |
2025-07-17T04:35:00.000-04:00 |
15654.854 |
2025-07-17T04:40:00.000-04:00 |
15676.148 |
2025-07-17T04:45:00.000-04:00 |
15703.833 |
2025-07-17T04:50:00.000-04:00 |
15740.679 |
2025-07-17T04:55:00.000-04:00 |
15750.398 |
2025-07-17T05:00:00.000-04:00 |
15838.986 |
2025-07-17T05:05:00.000-04:00 |
15933.652 |
2025-07-17T05:10:00.000-04:00 |
16013.885 |
2025-07-17T05:15:00.000-04:00 |
16030.507 |
2025-07-17T05:20:00.000-04:00 |
16101.64 |
2025-07-17T05:25:00.000-04:00 |
16107.925 |
2025-07-17T05:30:00.000-04:00 |
16132.313 |
2025-07-17T05:35:00.000-04:00 |
16175.198 |
2025-07-17T05:40:00.000-04:00 |
16244.287 |
2025-07-17T05:45:00.000-04:00 |
16296.345 |
2025-07-17T05:50:00.000-04:00 |
16344.999 |
2025-07-17T05:55:00.000-04:00 |
16413.261 |
2025-07-17T06:00:00.000-04:00 |
16553.716 |
2025-07-17T06:05:00.000-04:00 |
16747.83 |
2025-07-17T06:10:00.000-04:00 |
16840.026 |
2025-07-17T06:15:00.000-04:00 |
16959.972 |
2025-07-17T06:20:00.000-04:00 |
17039.723 |
2025-07-17T06:25:00.000-04:00 |
17062.34 |
2025-07-17T06:30:00.000-04:00 |
17145.98 |
2025-07-17T06:35:00.000-04:00 |
17242.359 |
2025-07-17T06:40:00.000-04:00 |
17360.828 |
2025-07-17T06:45:00.000-04:00 |
17391.721 |
2025-07-17T06:50:00.000-04:00 |
17480.15 |
2025-07-17T06:55:00.000-04:00 |
17500.798 |
2025-07-17T07:00:00.000-04:00 |
17609.514 |
2025-07-17T07:05:00.000-04:00 |
17728.696 |
2025-07-17T07:10:00.000-04:00 |
17861.709 |
2025-07-17T07:15:00.000-04:00 |
17940.24 |
2025-07-17T07:20:00.000-04:00 |
18047.93 |
2025-07-17T07:25:00.000-04:00 |
18133.357 |
2025-07-17T07:30:00.000-04:00 |
18185.304 |
2025-07-17T07:35:00.000-04:00 |
18213.462 |
2025-07-17T07:40:00.000-04:00 |
18261.377 |
2025-07-17T07:45:00.000-04:00 |
18291.7 |
2025-07-17T07:50:00.000-04:00 |
18335.664 |
2025-07-17T07:55:00.000-04:00 |
18388.153 |
2025-07-17T08:00:00.000-04:00 |
18392.356 |
2025-07-17T08:05:00.000-04:00 |
18437.919 |
2025-07-17T08:10:00.000-04:00 |
18492.793 |
2025-07-17T08:15:00.000-04:00 |
18554.877 |
2025-07-17T08:20:00.000-04:00 |
18566.984 |
2025-07-17T08:25:00.000-04:00 |
18556.46 |
2025-07-17T08:30:00.000-04:00 |
18584.557 |
2025-07-17T08:35:00.000-04:00 |
18585.078 |
2025-07-17T08:40:00.000-04:00 |
18607.655 |
2025-07-17T08:45:00.000-04:00 |
18667.944 |
2025-07-17T08:50:00.000-04:00 |
18676.286 |
2025-07-17T08:55:00.000-04:00 |
18722.42 |
2025-07-17T09:00:00.000-04:00 |
18661.638 |
2025-07-17T09:05:00.000-04:00 |
18748.419 |
2025-07-17T09:10:00.000-04:00 |
18716.967 |
2025-07-17T09:15:00.000-04:00 |
18757.056 |
2025-07-17T09:20:00.000-04:00 |
18804.138 |
2025-07-17T09:25:00.000-04:00 |
18847.659 |
2025-07-17T09:30:00.000-04:00 |
18857.359 |
2025-07-17T09:35:00.000-04:00 |
18936.759 |
2025-07-17T09:40:00.000-04:00 |
18867.652 |
2025-07-17T09:45:00.000-04:00 |
18859.102 |
2025-07-17T09:50:00.000-04:00 |
18913.455 |
2025-07-17T09:55:00.000-04:00 |
18962.272 |
2025-07-17T10:00:00.000-04:00 |
18975.8 |
2025-07-17T10:05:00.000-04:00 |
19017.528 |
2025-07-17T10:10:00.000-04:00 |
19044.323 |
2025-07-17T10:15:00.000-04:00 |
18998.332 |
2025-07-17T10:20:00.000-04:00 |
19030.616 |
2025-07-17T10:25:00.000-04:00 |
18972.994 |
2025-07-17T10:30:00.000-04:00 |
18930.603 |
2025-07-17T10:35:00.000-04:00 |
18934.42 |
2025-07-17T10:40:00.000-04:00 |
18976.36 |
2025-07-17T10:45:00.000-04:00 |
18968.13 |
2025-07-17T10:50:00.000-04:00 |
18992.68 |
2025-07-17T10:55:00.000-04:00 |
19046.26 |
2025-07-17T11:00:00.000-04:00 |
19062.965 |
2025-07-17T11:05:00.000-04:00 |
19093.632 |
2025-07-17T11:10:00.000-04:00 |
19100.802 |
2025-07-17T11:15:00.000-04:00 |
19124.497 |
2025-07-17T11:20:00.000-04:00 |
19143.859 |
2025-07-17T11:25:00.000-04:00 |
19219.102 |
2025-07-17T11:30:00.000-04:00 |
19237.963 |
2025-07-17T11:35:00.000-04:00 |
19273.06 |
2025-07-17T11:40:00.000-04:00 |
19235.073 |
2025-07-17T11:45:00.000-04:00 |
19318.215 |
2025-07-17T11:50:00.000-04:00 |
19322.446 |
2025-07-17T11:55:00.000-04:00 |
19327.928 |
2025-07-17T12:00:00.000-04:00 |
19399.768 |
2025-07-17T12:05:00.000-04:00 |
19453.13 |
2025-07-17T12:10:00.000-04:00 |
19520.113 |
2025-07-17T12:15:00.000-04:00 |
19628.274 |
2025-07-17T12:20:00.000-04:00 |
19638.061 |
2025-07-17T12:25:00.000-04:00 |
19804.109 |
2025-07-17T12:30:00.000-04:00 |
19840.001 |
2025-07-17T12:35:00.000-04:00 |
19905.083 |
2025-07-17T12:40:00.000-04:00 |
19987.138 |
2025-07-17T12:45:00.000-04:00 |
20072.7 |
2025-07-17T12:50:00.000-04:00 |
20099.338 |
2025-07-17T12:55:00.000-04:00 |
20181.424 |
2025-07-17T13:00:00.000-04:00 |
20215.206 |
2025-07-17T13:05:00.000-04:00 |
20296.687 |
2025-07-17T13:10:00.000-04:00 |
20337.87 |
2025-07-17T13:15:00.000-04:00 |
20450.511 |
2025-07-17T13:20:00.000-04:00 |
20481.05 |
2025-07-17T13:25:00.000-04:00 |
20563.591 |
2025-07-17T13:30:00.000-04:00 |
20619.779 |
2025-07-17T13:35:00.000-04:00 |
20618.948 |
2025-07-17T13:40:00.000-04:00 |
20646.407 |
2025-07-17T13:45:00.000-04:00 |
20719.729 |
2025-07-17T13:50:00.000-04:00 |
20768.578 |
2025-07-17T13:55:00.000-04:00 |
20803.342 |
2025-07-17T14:00:00.000-04:00 |
20892.998 |
2025-07-17T14:05:00.000-04:00 |
20929.057 |
2025-07-17T14:10:00.000-04:00 |
20934.491 |
2025-07-17T14:15:00.000-04:00 |
20983.835 |
2025-07-17T14:20:00.000-04:00 |
20913.84 |
2025-07-17T14:25:00.000-04:00 |
20847.793 |
2025-07-17T14:30:00.000-04:00 |
20825.693 |
2025-07-17T14:35:00.000-04:00 |
20872.029 |
2025-07-17T14:40:00.000-04:00 |
20858.446 |
2025-07-17T14:45:00.000-04:00 |
20883.295 |
2025-07-17T14:50:00.000-04:00 |
20838.844 |
2025-07-17T14:55:00.000-04:00 |
20897.291 |
2025-07-17T15:00:00.000-04:00 |
20883.366 |
2025-07-17T15:05:00.000-04:00 |
20937.77 |
2025-07-17T15:10:00.000-04:00 |
20971.801 |
2025-07-17T15:15:00.000-04:00 |
20990.809 |
2025-07-17T15:20:00.000-04:00 |
21041.952 |
2025-07-17T15:25:00.000-04:00 |
21130.829 |
2025-07-17T15:30:00.000-04:00 |
21201.423 |
2025-07-17T15:35:00.000-04:00 |
21261.13 |
2025-07-17T15:40:00.000-04:00 |
21348.969 |
2025-07-17T15:45:00.000-04:00 |
21420.238 |
2025-07-17T15:50:00.000-04:00 |
21429.312 |
2025-07-17T15:55:00.000-04:00 |
21465.54 |
2025-07-17T16:00:00.000-04:00 |
21584.786 |
2025-07-17T16:05:00.000-04:00 |
21631.317 |
2025-07-17T16:10:00.000-04:00 |
21754.074 |
2025-07-17T16:15:00.000-04:00 |
21826.76 |
2025-07-17T16:20:00.000-04:00 |
21945.758 |
2025-07-17T16:25:00.000-04:00 |
21948.074 |
2025-07-17T16:30:00.000-04:00 |
22081.023 |
2025-07-17T16:35:00.000-04:00 |
22168.413 |
2025-07-17T16:40:00.000-04:00 |
22214.951 |
2025-07-17T16:45:00.000-04:00 |
22334.16 |
2025-07-17T16:50:00.000-04:00 |
22384.392 |
2025-07-17T16:55:00.000-04:00 |
22509.091 |
2025-07-17T17:00:00.000-04:00 |
22302.37 |
2025-07-17T17:05:00.000-04:00 |
22265.293 |
2025-07-17T17:10:00.000-04:00 |
22353.192 |
2025-07-17T17:15:00.000-04:00 |
22480.152 |
2025-07-17T17:20:00.000-04:00 |
22626.939 |
2025-07-17T17:25:00.000-04:00 |
22688.918 |
2025-07-17T17:30:00.000-04:00 |
22833.305 |
2025-07-17T17:35:00.000-04:00 |
22895.127 |
2025-07-17T17:40:00.000-04:00 |
22982.216 |
2025-07-17T17:45:00.000-04:00 |
23098.907 |
2025-07-17T17:50:00.000-04:00 |
23215.163 |
2025-07-17T17:55:00.000-04:00 |
23229.201 |
2025-07-17T18:00:00.000-04:00 |
23121.229 |
2025-07-17T18:05:00.000-04:00 |
23069.823 |
2025-07-17T18:10:00.000-04:00 |
23081.45 |
2025-07-17T18:15:00.000-04:00 |
23208.583 |
2025-07-17T18:20:00.000-04:00 |
23258.716 |
2025-07-17T18:25:00.000-04:00 |
23333.135 |
2025-07-17T18:30:00.000-04:00 |
23309.971 |
2025-07-17T18:35:00.000-04:00 |
23395.15 |
2025-07-17T18:40:00.000-04:00 |
23400.006 |
2025-07-17T18:45:00.000-04:00 |
23437.367 |
2025-07-17T18:50:00.000-04:00 |
23500.482 |
2025-07-17T18:55:00.000-04:00 |
23462.484 |
2025-07-17T19:00:00.000-04:00 |
23547.011 |
2025-07-17T19:05:00.000-04:00 |
23449.131 |
2025-07-17T19:10:00.000-04:00 |
23474.724 |
2025-07-17T19:15:00.000-04:00 |
23437.855 |
2025-07-17T19:20:00.000-04:00 |
23426.317 |
2025-07-17T19:25:00.000-04:00 |
23419.311 |
2025-07-17T19:30:00.000-04:00 |
23358.065 |
2025-07-17T19:35:00.000-04:00 |
23322.001 |
2025-07-17T19:40:00.000-04:00 |
23276.352 |
2025-07-17T19:45:00.000-04:00 |
23260.414 |
2025-07-17T19:50:00.000-04:00 |
23245.734 |
2025-07-17T19:55:00.000-04:00 |
23213.189 |
2025-07-17T20:00:00.000-04:00 |
23254.121 |
2025-07-17T20:05:00.000-04:00 |
23207.516 |
2025-07-17T20:10:00.000-04:00 |
23134.575 |
2025-07-17T20:15:00.000-04:00 |
23062.704 |
2025-07-17T20:20:00.000-04:00 |
23113.091 |
2025-07-17T20:25:00.000-04:00 |
23084.183 |
2025-07-17T20:30:00.000-04:00 |
23015.308 |
2025-07-17T20:35:00.000-04:00 |
22981.389 |
2025-07-17T20:40:00.000-04:00 |
22947.204 |
2025-07-17T20:45:00.000-04:00 |
22899.548 |
2025-07-17T20:50:00.000-04:00 |
22855.691 |
2025-07-17T20:55:00.000-04:00 |
22770.346 |
2025-07-17T21:00:00.000-04:00 |
22706.34 |
2025-07-17T21:05:00.000-04:00 |
22544.389 |
2025-07-17T21:10:00.000-04:00 |
22440.029 |
2025-07-17T21:15:00.000-04:00 |
22359.034 |
2025-07-17T21:20:00.000-04:00 |
22300.875 |
2025-07-17T21:25:00.000-04:00 |
22215.006 |
2025-07-17T21:30:00.000-04:00 |
22065.983 |
2025-07-17T21:35:00.000-04:00 |
21978.241 |
2025-07-17T21:40:00.000-04:00 |
21810.895 |
2025-07-17T21:45:00.000-04:00 |
21711.625 |
2025-07-17T21:50:00.000-04:00 |
21571.845 |
2025-07-17T21:55:00.000-04:00 |
21476.145 |
2025-07-17T22:00:00.000-04:00 |
21254.668 |
2025-07-17T22:05:00.000-04:00 |
21124.184 |
2025-07-17T22:10:00.000-04:00 |
20964.293 |
2025-07-17T22:15:00.000-04:00 |
20821.34 |
2025-07-17T22:20:00.000-04:00 |
20722.147 |
2025-07-17T22:25:00.000-04:00 |
20549.895 |
2025-07-17T22:30:00.000-04:00 |
20432.32 |
2025-07-17T22:35:00.000-04:00 |
20307.38 |
2025-07-17T22:40:00.000-04:00 |
20179.686 |
2025-07-17T22:45:00.000-04:00 |
20025.982 |
2025-07-17T22:50:00.000-04:00 |
19852.356 |
2025-07-17T22:55:00.000-04:00 |
19753.534 |
2025-07-17T23:00:00.000-04:00 |
19554.287 |
2025-07-17T23:05:00.000-04:00 |
19383.358 |
2025-07-17T23:10:00.000-04:00 |
19252.024 |